diff --git a/OF DL.Core/Services/ApiService.cs b/OF DL.Core/Services/ApiService.cs index bd5238c..2e6b2a5 100644 --- a/OF DL.Core/Services/ApiService.cs +++ b/OF DL.Core/Services/ApiService.cs @@ -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);