No need to git add . whole expression

This commit is contained in:
RMidhunSuresh 2022-01-13 21:01:13 +05:30
parent 72691eeb9d
commit 22356bee51

View file

@ -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() {