diff --git a/Telegram/SourceFiles/historywidget.cpp b/Telegram/SourceFiles/historywidget.cpp index c80aec5f4..0ba8554d6 100644 --- a/Telegram/SourceFiles/historywidget.cpp +++ b/Telegram/SourceFiles/historywidget.cpp @@ -3606,9 +3606,7 @@ void HistoryWidget::showHistory(const PeerId &peerId, MsgId showAtMsgId, bool re _migrated->unreadBar->destroy(); } if (_pinnedBar) { - delete _pinnedBar; - _pinnedBar = nullptr; - _inPinnedMsg = false; + destroyPinnedBar(); } _history = _migrated = 0; updateBotKeyboard(); @@ -6844,9 +6842,7 @@ void HistoryWidget::updatePinnedBar(bool force) { if (_peer && _peer->isMegagroup()) { _peer->asChannel()->mgInfo->pinnedMsgId = 0; } - delete _pinnedBar; - _pinnedBar = nullptr; - _inPinnedMsg = false; + destroyPinnedBar(); resizeEvent(0); update(); } @@ -6894,8 +6890,7 @@ bool HistoryWidget::pinnedMsgVisibilityUpdated() { App::api()->requestMessageData(_peer->asChannel(), _pinnedBar->msgId, new ReplyEditMessageDataCallback()); } } else if (_pinnedBar) { - delete _pinnedBar; - _pinnedBar = nullptr; + destroyPinnedBar(); result = true; _scroll.scrollToY(_scroll.scrollTop() - st::replyHeight); resizeEvent(0); @@ -6903,6 +6898,12 @@ bool HistoryWidget::pinnedMsgVisibilityUpdated() { return result; } +void HistoryWidget::destroyPinnedBar() { + delete _pinnedBar; + _pinnedBar = nullptr; + _inPinnedMsg = false; +} + void HistoryWidget::ReplyEditMessageDataCallback::call(ChannelData *channel, MsgId msgId) const { if (App::main()) { App::main()->messageDataReceived(channel, msgId);