diff --git a/cockatrice/src/remoteclient.cpp b/cockatrice/src/remoteclient.cpp index 2024e17d..05c0f938 100644 --- a/cockatrice/src/remoteclient.cpp +++ b/cockatrice/src/remoteclient.cpp @@ -158,7 +158,7 @@ void RemoteClient::loginResponse(const Response &response) if (resp.missing_features_size() > 0 && settingsCache->getNotifyAboutUpdates()) emit notifyUserAboutUpdate(); - } else { + } else if (response.response_code() != Response::RespNotConnected) { QList missingFeatures; if (resp.missing_features_size() > 0) { for (int i = 0; i < resp.missing_features_size(); ++i) @@ -397,4 +397,4 @@ void RemoteClient::doIdleTimeOut() void RemoteClient::resetIdleTimer() { emit resetIdleTimerClock(); -} \ No newline at end of file +}