mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 07:04:27 +00:00
Misc
This commit is contained in:
parent
24ad984568
commit
b5cc74ca42
3 changed files with 4 additions and 2 deletions
|
@ -95,7 +95,8 @@ namespace ArchiSteamFarm {
|
|||
|
||||
ShouldSendHeartBeats = hasAutomatedTrading && steamTradeMatcher;
|
||||
|
||||
await Program.WebBrowser.UrlPostRetry(request, data).ConfigureAwait(false);
|
||||
// We don't need retry logic here
|
||||
await Program.WebBrowser.UrlPost(request, data).ConfigureAwait(false);
|
||||
} finally {
|
||||
Semaphore.Release();
|
||||
}
|
||||
|
@ -129,7 +130,8 @@ namespace ArchiSteamFarm {
|
|||
{ "AvatarHash", avatarHash }
|
||||
};
|
||||
|
||||
if (await Program.WebBrowser.UrlPostRetry(request, data).ConfigureAwait(false)) {
|
||||
// We don't need retry logic here
|
||||
if (await Program.WebBrowser.UrlPost(request, data).ConfigureAwait(false)) {
|
||||
LastAvatarHash = avatarHash;
|
||||
}
|
||||
} finally {
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue