From 2a75f5c86808c90573e5bfc5cb0f027cf6391366 Mon Sep 17 00:00:00 2001 From: whimsical-c4lic0 Date: Fri, 27 Feb 2026 00:20:09 -0600 Subject: [PATCH] Fix cancellation handling --- OF DL.Core/Services/ApiService.cs | 8 ++++++++ 1 file changed, 8 insertions(+) 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);