catch all exceptions for analytics ping but do not report task-cancelled exceptions

This commit is contained in:
2026-04-23 12:37:36 +02:00
parent 3839bced26
commit e3eeaf3056
+5 -1
View File
@@ -120,7 +120,11 @@ public class AnalyticsController : FinchController
return StatusCode((int)proxyResponse.StatusCode, responseBody);
}
catch (Exception ex) when(ex is not TaskCanceledException and not OperationCanceledException)
catch (Exception ex) when (ex is TaskCanceledException or OperationCanceledException)
{
// ignore
}
catch (Exception ex)
{
Logger.LogError(ex, "Failed to contact umami service");
}