From 4af9c801ae904e2f21c4706572107883713facf5 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 27 Sep 2019 19:56:54 +0300 Subject: [PATCH] Don't show sticker suggestions if can't send. Fixes #6581. --- Telegram/SourceFiles/history/history_widget.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index fb8119468..7970b2541 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -535,6 +535,7 @@ HistoryWidget::HistoryWidget( if (update.peer == _peer) { if (update.flags & UpdateFlag::RightsChanged) { checkPreview(); + updateStickersByEmoji(); } if (update.flags & UpdateFlag::UnreadMentionsChanged) { updateUnreadMentionsVisibility(); @@ -1106,11 +1107,14 @@ void HistoryWidget::orderWidgets() { } void HistoryWidget::updateStickersByEmoji() { - if (!_history) { + if (!_peer) { return; } const auto emoji = [&] { - if (!_editMsgId) { + const auto errorForStickers = Data::RestrictionError( + _peer, + ChatRestriction::f_send_stickers); + if (!_editMsgId && !errorForStickers) { const auto &text = _field->getTextWithTags().text; auto length = 0; if (const auto emoji = Ui::Emoji::Find(text, &length)) {