swallow task-canceled-exception when pinging tracker

This commit is contained in:
2026-04-20 11:55:42 +02:00
parent c9928c06e6
commit 4b95b9281c
+1 -1
View File
@@ -120,7 +120,7 @@ public class AnalyticsController : FinchController
return StatusCode((int)proxyResponse.StatusCode, responseBody);
}
catch (Exception ex)
catch (Exception ex) when(ex is not TaskCanceledException and not OperationCanceledException)
{
Logger.LogError(ex, "Failed to contact umami service");
}