diff --git a/Telegram/SourceFiles/history/history.cpp b/Telegram/SourceFiles/history/history.cpp index 2e84639b1b..5489bc31f1 100644 --- a/Telegram/SourceFiles/history/history.cpp +++ b/Telegram/SourceFiles/history/history.cpp @@ -830,6 +830,9 @@ void History::setUnreadMentionsCount(int count) { bool History::addToUnreadMentions( MsgId msgId, UnreadMentionType type) { + if (peer->isChannel() && !peer->isMegagroup()) { + return false; + } auto allLoaded = _unreadMentionsCount ? (_unreadMentions.size() >= *_unreadMentionsCount) : false;