From d169ce6799fb8ab8fddc2b4fe050c9603905bd97 Mon Sep 17 00:00:00 2001 From: trevor-signal <131492920+trevor-signal@users.noreply.github.com> Date: Tue, 13 Jun 2023 13:09:09 -0400 Subject: [PATCH] Include unreadMentionsCount as part of conversation props --- ts/util/getConversation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ts/util/getConversation.ts b/ts/util/getConversation.ts index 247c504e05..036129637b 100644 --- a/ts/util/getConversation.ts +++ b/ts/util/getConversation.ts @@ -222,6 +222,7 @@ export function getConversation(model: ConversationModel): ConversationType { ? window.i18n('icu:noteToSelf') : getTitle(attributes), unreadCount: attributes.unreadCount || 0, + unreadMentionsCount: attributes.unreadMentionsCount || 0, ...(isDirectConversation(attributes) ? { type: 'direct' as const,