We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1e8af0 commit 25da5fbCopy full SHA for 25da5fb
ArchiSteamFarm/Program.cs
@@ -105,7 +105,7 @@ internal static void Restart() {
105
internal static async Task LimitSteamRequestsAsync() {
106
await SteamSemaphore.WaitAsync().ConfigureAwait(false);
107
var releaseLater = Task.Run(async () => {
108
- await Utilities.SleepAsync(5000).ConfigureAwait(false); // We must add some delay to not get caught by Steam rate limiter
+ await Utilities.SleepAsync(7000).ConfigureAwait(false); // We must add some delay to not get caught by Steam rate limiter
109
SteamSemaphore.Release();
110
});
111
}
0 commit comments