forked from sim0n00ps/OF-DL
Fix cancellation handling
This commit is contained in:
parent
b3e6ca4b5f
commit
2a75f5c868
@ -238,6 +238,10 @@ public class ApiService(IAuthService authService, IConfigService configService,
|
|||||||
|
|
||||||
return jObject;
|
return jObject;
|
||||||
}
|
}
|
||||||
|
catch (OperationCanceledException)
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
ExceptionLoggerHelper.LogException(ex);
|
ExceptionLoggerHelper.LogException(ex);
|
||||||
@ -2203,6 +2207,10 @@ public class ApiService(IAuthService authService, IConfigService configService,
|
|||||||
|
|
||||||
return purchasedTabUsers;
|
return purchasedTabUsers;
|
||||||
}
|
}
|
||||||
|
catch (OperationCanceledException)
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
ExceptionLoggerHelper.LogException(ex);
|
ExceptionLoggerHelper.LogException(ex);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user