From 959fb661c36ad8c0610d8d2516cf0c02e6ac359a Mon Sep 17 00:00:00 2001 From: William Grant Date: Thu, 18 May 2023 16:13:52 +1000 Subject: [PATCH] fix: incorrect direction check in getPropsForExpiringMessage --- ts/models/message.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ts/models/message.ts b/ts/models/message.ts index 416398078..fa5eef6d1 100644 --- a/ts/models/message.ts +++ b/ts/models/message.ts @@ -296,7 +296,9 @@ export class MessageModel extends Backbone.Model { : null; const direction = - this.get('direction') || this.get('type') === 'outgoing' ? 'outgoing' : 'incoming'; + this.get('direction') === 'outgoing' || this.get('type') === 'outgoing' + ? 'outgoing' + : 'incoming'; return { convoId: this.get('conversationId'),