From 74cf88cf8124d9cb17ec92357752ffa914923b1a Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 16 Mar 2022 10:49:19 +1100 Subject: [PATCH] create closed group mark as approved also, do not filter closed group based on the isApproved field in redux --- ts/models/conversation.ts | 5 ++--- ts/receiver/closedGroups.ts | 2 +- ts/receiver/contentMessage.ts | 3 ++- ts/session/group/closed-group.ts | 1 - ts/session/utils/calling/CallManager.ts | 1 - ts/state/selectors/conversations.ts | 2 +- 6 files changed, 6 insertions(+), 8 deletions(-) diff --git a/ts/models/conversation.ts b/ts/models/conversation.ts index b18165411..20be3cc2e 100644 --- a/ts/models/conversation.ts +++ b/ts/models/conversation.ts @@ -776,7 +776,6 @@ export class ConversationModel extends Backbone.Model { messageRequestResponse: { isApproved: 1, }, - unread: 1, // 1 means unread expireTimer: 0, }); @@ -945,7 +944,6 @@ export class ConversationModel extends Backbone.Model { if (isOutgoing) { message = await this.addSingleOutgoingMessage({ ...commonAttributes, - unread: 0, sent_at: timestamp, }); } else { @@ -1017,7 +1015,7 @@ export class ConversationModel extends Backbone.Model { public async addSingleOutgoingMessage( messageAttributes: Omit< MessageAttributesOptionals, - 'conversationId' | 'source' | 'type' | 'direction' | 'received_at' + 'conversationId' | 'source' | 'type' | 'direction' | 'received_at' | 'unread' > ) { return this.addSingleMessage({ @@ -1026,6 +1024,7 @@ export class ConversationModel extends Backbone.Model { source: UserUtils.getOurPubKeyStrFromCache(), type: 'outgoing', direction: 'outgoing', + unread: 0, // an outgoing message must be read right? received_at: messageAttributes.sent_at, // make sure to set an received_at timestamp for an outgoing message, so the order are right. }); } diff --git a/ts/receiver/closedGroups.ts b/ts/receiver/closedGroups.ts index 7f88d44c0..54de697c0 100644 --- a/ts/receiver/closedGroups.ts +++ b/ts/receiver/closedGroups.ts @@ -954,7 +954,7 @@ export async function createClosedGroup(groupName: string, members: Array