Fixing crash in logout from passcode.

If the MTP::Instance is not started yet (we forgot our passcode),
the logout attempt was attempting to use mtproto from Intro::Widget
constructor before it was created. Now we create it before logout.
This commit is contained in:
John Preston 2017-02-27 21:25:42 +03:00
parent 6c3e1568da
commit 3f8e822621
1 changed files with 3 additions and 1 deletions

View File

@ -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();
}
}