diff --git a/Telegram/SourceFiles/api/api_unread_things.cpp b/Telegram/SourceFiles/api/api_unread_things.cpp index 8888d794f6..dac998dfdc 100644 --- a/Telegram/SourceFiles/api/api_unread_things.cpp +++ b/Telegram/SourceFiles/api/api_unread_things.cpp @@ -36,7 +36,7 @@ bool UnreadThings::trackMentions(Data::Thread *thread) const { bool UnreadThings::trackReactions(Data::Thread *thread) const { const auto peer = thread ? thread->peer().get() : nullptr; - return peer && (peer->isChat() || peer->isMegagroup()); + return peer && (peer->isUser() || peer->isChat() || peer->isMegagroup()); } void UnreadThings::preloadEnough(Data::Thread *thread) {