mirror of https://github.com/procxx/kepka.git
Fix crash in clear history after report spam.
This commit is contained in:
parent
43c8046e4c
commit
2661fe5cd5
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue