From 7e104805c056c28bf22d0d38a1ceeeb8e7d2fb40 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 20 Nov 2018 14:59:47 +0400 Subject: [PATCH] Handle AUTH_KEY_UNREGISTERED on password submit. --- Telegram/SourceFiles/intro/intropwdcheck.cpp | 30 +++++++++++--------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/Telegram/SourceFiles/intro/intropwdcheck.cpp b/Telegram/SourceFiles/intro/intropwdcheck.cpp index e378940cf..2ce5011a9 100644 --- a/Telegram/SourceFiles/intro/intropwdcheck.cpp +++ b/Telegram/SourceFiles/intro/intropwdcheck.cpp @@ -148,20 +148,21 @@ void PwdCheckWidget::pwdSubmitFail(const RPCError &error) { _sentRequest = 0; stopCheck(); - auto &err = error.type(); - if (err == qstr("PASSWORD_HASH_INVALID") - || err == qstr("SRP_PASSWORD_CHANGED")) { + const auto &type = error.type(); + if (type == qstr("PASSWORD_HASH_INVALID") + || type == qstr("SRP_PASSWORD_CHANGED")) { showError(langFactory(lng_signin_bad_password)); _pwdField->selectAll(); _pwdField->showError(); - } else if (err == qstr("PASSWORD_EMPTY")) { + } else if (type == qstr("PASSWORD_EMPTY") + || type == qstr("AUTH_KEY_UNREGISTERED")) { goBack(); - } else if (err == qstr("SRP_ID_INVALID")) { + } else if (type == qstr("SRP_ID_INVALID")) { handleSrpIdInvalid(); } else { if (Logs::DebugEnabled()) { // internal server error - auto text = err + ": " + error.description(); - showError([text] { return text; }); + const auto text = type + ": " + error.description(); + showError([=] { return text; }); } else { showError(&Lang::Hard::ServerError); } @@ -235,22 +236,23 @@ void PwdCheckWidget::codeSubmitFail(const RPCError &error) { _sentRequest = 0; stopCheck(); - const QString &err = error.type(); - if (err == qstr("PASSWORD_EMPTY")) { + const auto &type = error.type(); + if (type == qstr("PASSWORD_EMPTY") + || type == qstr("AUTH_KEY_UNREGISTERED")) { goBack(); - } else if (err == qstr("PASSWORD_RECOVERY_NA")) { + } else if (type == qstr("PASSWORD_RECOVERY_NA")) { recoverStartFail(error); - } else if (err == qstr("PASSWORD_RECOVERY_EXPIRED")) { + } else if (type == qstr("PASSWORD_RECOVERY_EXPIRED")) { _emailPattern = QString(); onToPassword(); - } else if (err == qstr("CODE_INVALID")) { + } else if (type == qstr("CODE_INVALID")) { showError(langFactory(lng_signin_wrong_code)); _codeField->selectAll(); _codeField->showError(); } else { if (Logs::DebugEnabled()) { // internal server error - auto text = err + ": " + error.description(); - showError([text] { return text; }); + const auto text = type + ": " + error.description(); + showError([=] { return text; }); } else { showError(&Lang::Hard::ServerError); }