2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

fixed settings on restart

This commit is contained in:
John Preston
2014-10-22 23:44:30 +04:00
parent b4427a0073
commit 12ff311114
3 changed files with 5 additions and 2 deletions

View File

@@ -207,7 +207,7 @@ void UsernameBox::onUpdateDone(const MTPUser &user) {
bool UsernameBox::onUpdateFail(const RPCError &error) {
_saveRequest = 0;
QString err(error.type()), name = getName();
if (err == "USERNAME_NOT_MODIFIED") {
if (err == "USERNAME_NOT_MODIFIED" || _sentUsername == textOneLine(name)) {
App::self()->setName(textOneLine(App::self()->firstName), textOneLine(App::self()->lastName), textOneLine(App::self()->nameOrPhone), textOneLine(name));
emit closed();
return true;