diff --git a/Telegram/SourceFiles/app.cpp b/Telegram/SourceFiles/app.cpp index a9fde250f..95467aae3 100644 --- a/Telegram/SourceFiles/app.cpp +++ b/Telegram/SourceFiles/app.cpp @@ -229,8 +229,10 @@ namespace { if (auto mtproto = Messenger::Instance().mtp()) { mtproto->logout(rpcDone(&loggedOut), rpcFail(&loggedOut)); } else { - loggedOut(); + // We log out because we've forgotten passcode. + // So we just start mtproto from scratch. Messenger::Instance().startMtp(); + loggedOut(); } }