diff --git a/Telegram/SourceFiles/history/history.cpp b/Telegram/SourceFiles/history/history.cpp index a1731627a6..40ba51d43e 100644 --- a/Telegram/SourceFiles/history/history.cpp +++ b/Telegram/SourceFiles/history/history.cpp @@ -2334,6 +2334,9 @@ History *History::migrateSibling() const { Dialogs::UnreadState History::chatListUnreadState() const { if (const auto forum = peer->forum()) { return AdjustedForumUnreadState(forum->topicsList()->unreadState()); + } else if (const auto monoforum = peer->monoforum()) { + return AdjustedForumUnreadState( + monoforum->chatsList()->unreadState()); } return computeUnreadState(); }