Fix crash in handlePendingHistoryUpdate().

This method is called from InvokeQueued, so the auth session could
be destroyed already and should be checked before being accessed.
This commit is contained in:
John Preston 2017-07-13 17:44:45 +03:00
parent 2f816942b8
commit e0c74c9546
1 changed files with 3 additions and 0 deletions

View File

@ -361,6 +361,9 @@ void historyMuteUpdated(History *history) {
}
void handlePendingHistoryUpdate() {
if (!AuthSession::Exists()) {
return;
}
AuthSession::Current().data().pendingHistoryResize().notify(true);
for (auto item : base::take(Global::RefPendingRepaintItems())) {