Added raising of mentioned chats to top for unread-on-top option.

This commit is contained in:
23rd
2026-07-17 15:11:08 +03:00
parent 622e746402
commit e946bc2fa2
@@ -259,7 +259,8 @@ bool Entry::hasUnreadUnmutedForSort() const {
const auto state = chatListUnreadState();
return (state.messages > state.messagesMuted)
|| (state.marks > state.marksMuted)
|| (state.reactions > state.reactionsMuted);
|| (state.reactions > state.reactionsMuted)
|| (state.mentions > 0);
}
void Entry::updateChatListExistence() {