From 3620796d6d0bf69322091de75f4e53b57fb36ace Mon Sep 17 00:00:00 2001 From: Archi Date: Tue, 19 Mar 2024 11:07:50 +0100 Subject: [PATCH] Misc --- ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs b/ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs index d57347176..4b04382c3 100644 --- a/ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs +++ b/ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs @@ -2312,16 +2312,16 @@ public sealed class ArchiWebHandler : IDisposable { await Task.Delay(WebLimiterDelay, cancellationToken).ConfigureAwait(false); } - using WebAPI.AsyncInterface loyaltyRewardsService = Bot.SteamConfiguration.GetAsyncWebAPIInterface(AccountPrivateAppsService); + using WebAPI.AsyncInterface accountPrivateAppsService = Bot.SteamConfiguration.GetAsyncWebAPIInterface(AccountPrivateAppsService); - loyaltyRewardsService.Timeout = WebBrowser.Timeout; + accountPrivateAppsService.Timeout = WebBrowser.Timeout; try { response = await WebLimitRequest( WebAPI.DefaultBaseAddress, // ReSharper disable once AccessToDisposedClosure - async () => await loyaltyRewardsService.CallAsync(HttpMethod.Get, "GetPrivateAppList", args: arguments).ConfigureAwait(false), cancellationToken + async () => await accountPrivateAppsService.CallAsync(HttpMethod.Get, "GetPrivateAppList", args: arguments).ConfigureAwait(false), cancellationToken ).ConfigureAwait(false); } catch (TaskCanceledException e) { Bot.ArchiLogger.LogGenericDebuggingException(e);