Added throw after sentry's CaptureException

This commit is contained in:
2026-01-04 15:33:24 +03:30
parent f3bfa59889
commit cc1dca84d3

View File

@@ -18,6 +18,7 @@ public class ExceptionHandlerMiddleware
catch (Exception ex) catch (Exception ex)
{ {
SentrySdk.CaptureException(ex); SentrySdk.CaptureException(ex);
throw;
} }
} }
} }