diff options
Diffstat (limited to 'protocols/Steam/src/steam_polling.cpp')
-rw-r--r-- | protocols/Steam/src/steam_polling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_polling.cpp b/protocols/Steam/src/steam_polling.cpp index 2397b7531c..182f9df783 100644 --- a/protocols/Steam/src/steam_polling.cpp +++ b/protocols/Steam/src/steam_polling.cpp @@ -197,7 +197,7 @@ void CSteamProto::OnGotPoll(const HttpResponse &response, void *arg) debugLogA(__FUNCTION__ ": Not Logged On"); // try to reconnect only when we're actually online (during normal logout we will still got this error anyway, but in that case our status is already offline) - if (!IsOnline() && !Relogin()) + if (!IsOnline() || !Relogin()) { // let it jump out of further processing param->errors = param->errorsLimit; |