mirror of https://github.com/procxx/kepka.git
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:
parent
6c3e1568da
commit
3f8e822621
|
@ -229,8 +229,10 @@ namespace {
|
||||||
if (auto mtproto = Messenger::Instance().mtp()) {
|
if (auto mtproto = Messenger::Instance().mtp()) {
|
||||||
mtproto->logout(rpcDone(&loggedOut), rpcFail(&loggedOut));
|
mtproto->logout(rpcDone(&loggedOut), rpcFail(&loggedOut));
|
||||||
} else {
|
} else {
|
||||||
loggedOut();
|
// We log out because we've forgotten passcode.
|
||||||
|
// So we just start mtproto from scratch.
|
||||||
Messenger::Instance().startMtp();
|
Messenger::Instance().startMtp();
|
||||||
|
loggedOut();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue