mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-06 15:13:57 +02:00
Fix a possible crash in Clear History.
This commit is contained in:
parent
f9f52302bb
commit
47d2ecf629
1 changed files with 4 additions and 1 deletions
|
@ -1391,12 +1391,15 @@ void HistoryMessage::applyEdition(const MTPDmessage &message) {
|
||||||
|
|
||||||
void HistoryMessage::applyEdition(const MTPDmessageService &message) {
|
void HistoryMessage::applyEdition(const MTPDmessageService &message) {
|
||||||
if (message.vaction().type() == mtpc_messageActionHistoryClear) {
|
if (message.vaction().type() == mtpc_messageActionHistoryClear) {
|
||||||
|
const auto wasGrouped = history()->owner().groups().isGrouped(this);
|
||||||
setReplyMarkup(nullptr);
|
setReplyMarkup(nullptr);
|
||||||
refreshMedia(nullptr);
|
refreshMedia(nullptr);
|
||||||
setEmptyText();
|
setEmptyText();
|
||||||
setViewsCount(-1);
|
setViewsCount(-1);
|
||||||
setForwardsCount(-1);
|
setForwardsCount(-1);
|
||||||
|
if (wasGrouped) {
|
||||||
|
history()->owner().groups().unregisterMessage(this);
|
||||||
|
}
|
||||||
finishEditionToEmpty();
|
finishEditionToEmpty();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue