Fix crash in clear history after report spam.

This commit is contained in:
John Preston 2017-05-21 12:25:54 +03:00
parent 43c8046e4c
commit 2661fe5cd5
1 changed files with 14 additions and 11 deletions

View File

@ -4467,18 +4467,21 @@ void HistoryWidget::onReportSpamHide() {
void HistoryWidget::onReportSpamClear() { void HistoryWidget::onReportSpamClear() {
Expects(_peer != nullptr); Expects(_peer != nullptr);
if (_peer->isUser()) { InvokeQueued(App::main(), [peer = _peer] {
App::main()->deleteConversation(_peer); if (peer->isUser()) {
} else if (auto chat = _peer->asChat()) { App::main()->deleteConversation(peer);
App::main()->showBackFromStack(); } else if (auto chat = peer->asChat()) {
MTP::send(MTPmessages_DeleteChatUser(chat->inputChat, App::self()->inputUser), App::main()->rpcDone(&MainWidget::deleteHistoryAfterLeave, _peer), App::main()->rpcFail(&MainWidget::leaveChatFailed, _peer)); MTP::send(MTPmessages_DeleteChatUser(chat->inputChat, App::self()->inputUser), App::main()->rpcDone(&MainWidget::deleteHistoryAfterLeave, peer), App::main()->rpcFail(&MainWidget::leaveChatFailed, peer));
} else if (auto channel = _peer->asChannel()) { } else if (auto channel = peer->asChannel()) {
App::main()->showBackFromStack(); if (channel->migrateFrom()) {
if (channel->migrateFrom()) { App::main()->deleteConversation(channel->migrateFrom());
App::main()->deleteConversation(channel->migrateFrom()); }
MTP::send(MTPchannels_LeaveChannel(channel->inputChannel), App::main()->rpcDone(&MainWidget::sentUpdatesReceived));
} }
MTP::send(MTPchannels_LeaveChannel(channel->inputChannel), App::main()->rpcDone(&MainWidget::sentUpdatesReceived)); });
}
// Invalidates _peer.
App::main()->showBackFromStack();
} }
void HistoryWidget::peerMessagesUpdated(PeerId peer) { void HistoryWidget::peerMessagesUpdated(PeerId peer) {