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'),