From 6c795d4ced1742ad14e2b51de46eba3d50c82e93 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Tue, 15 Feb 2022 12:08:52 +0100 Subject: [PATCH] Bugfix: missing comma --- dev/Model/Message.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/Model/Message.js b/dev/Model/Message.js index f3a0b839c..8988c58b9 100644 --- a/dev/Model/Message.js +++ b/dev/Model/Message.js @@ -94,7 +94,7 @@ export class MessageModel extends AbstractModel { attachmentIconClass: () => FileInfo.getAttachmentsIconClass(this.attachments()), threadsLen: () => this.threads().length, isImportant: () => MessagePriority.High === this.priority(), - hasAttachments: () => this.attachments().hasVisible() + hasAttachments: () => this.attachments().hasVisible(), isDeleted: () => this.flags().includes('\\deleted'), isUnseen: () => !this.flags().includes('\\seen') /* || this.flags().includes('\\unseen')*/,