Fix cancellation handling

This commit is contained in:
whimsical-c4lic0 2026-02-27 00:20:09 -06:00
parent b3e6ca4b5f
commit 2a75f5c868

View File

@ -238,6 +238,10 @@ public class ApiService(IAuthService authService, IConfigService configService,
return jObject;
}
catch (OperationCanceledException)
{
throw;
}
catch (Exception ex)
{
ExceptionLoggerHelper.LogException(ex);
@ -2203,6 +2207,10 @@ public class ApiService(IAuthService authService, IConfigService configService,
return purchasedTabUsers;
}
catch (OperationCanceledException)
{
throw;
}
catch (Exception ex)
{
ExceptionLoggerHelper.LogException(ex);