This commit is contained in:
JustArchi 2016-12-04 15:30:00 +01:00
parent 24ad984568
commit b5cc74ca42
3 changed files with 4 additions and 2 deletions

View file

@ -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.