[TUI] Add return value for error handling in exception catch block

This commit is contained in:
2025-10-16 19:49:09 +01:00
parent eb8f0fc2a6
commit f2f00038d7

View File

@@ -71,6 +71,8 @@ public static class Program
catch(Exception ex)
{
SentrySdk.CaptureException(ex);
return -1;
}
}