mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-13 01:24:46 -07:00
Merge pull request #2195 from wincinderith/login-error-fix
Prevent login error handler being incorrectly called
This commit is contained in:
commit
a4b1a79cd4
1 changed files with 2 additions and 2 deletions
|
|
@ -158,7 +158,7 @@ void RemoteClient::loginResponse(const Response &response)
|
||||||
if (resp.missing_features_size() > 0 && settingsCache->getNotifyAboutUpdates())
|
if (resp.missing_features_size() > 0 && settingsCache->getNotifyAboutUpdates())
|
||||||
emit notifyUserAboutUpdate();
|
emit notifyUserAboutUpdate();
|
||||||
|
|
||||||
} else {
|
} else if (response.response_code() != Response::RespNotConnected) {
|
||||||
QList<QString> missingFeatures;
|
QList<QString> missingFeatures;
|
||||||
if (resp.missing_features_size() > 0) {
|
if (resp.missing_features_size() > 0) {
|
||||||
for (int i = 0; i < resp.missing_features_size(); ++i)
|
for (int i = 0; i < resp.missing_features_size(); ++i)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue