From 22356bee519b5b4733ece5c60f05b2a725d67156 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Thu, 13 Jan 2022 21:01:13 +0530 Subject: [PATCH] No need to git add . whole expression --- src/matrix/room/timeline/entries/BaseEventEntry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/room/timeline/entries/BaseEventEntry.js b/src/matrix/room/timeline/entries/BaseEventEntry.js index dca486f6..dbcfce94 100644 --- a/src/matrix/room/timeline/entries/BaseEventEntry.js +++ b/src/matrix/room/timeline/entries/BaseEventEntry.js @@ -32,7 +32,7 @@ export class BaseEventEntry extends BaseEntry { } get isReply() { - return !!(this.relation?.["m.in_reply_to"] || this.isThread); + return !!this.relation?.["m.in_reply_to"] || this.isThread; } get isThread() {