mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-24 18:38:15 +01:00
getTotalUnreadForConversation: Add missing isGroup parameter
This commit is contained in:
@@ -1170,9 +1170,12 @@ async function getMessageBySender({
|
||||
|
||||
async function getTotalUnreadForConversation(
|
||||
conversationId: string,
|
||||
storyId?: UUIDStringType
|
||||
options: {
|
||||
storyId: UUIDStringType | undefined;
|
||||
isGroup: boolean;
|
||||
}
|
||||
) {
|
||||
return channels.getTotalUnreadForConversation(conversationId, storyId);
|
||||
return channels.getTotalUnreadForConversation(conversationId, options);
|
||||
}
|
||||
|
||||
async function getUnreadByConversationAndMarkRead(options: {
|
||||
|
||||
Reference in New Issue
Block a user