From: Ajay Bura Date: Fri, 19 Nov 2021 04:30:07 +0000 (+0530) Subject: Fix message not comming in encrypted rooms X-Git-Tag: v1.6.0~54 X-Git-Url: https://git.wafflesoft.org/?a=commitdiff_plain;h=6aa98d5eacb9382d972af1ef496b6d99fdfbf1d5;p=rainny.git Fix message not comming in encrypted rooms Signed-off-by: Ajay Bura --- diff --git a/src/client/state/RoomTimeline.js b/src/client/state/RoomTimeline.js index a6ea59a..d393dbf 100644 --- a/src/client/state/RoomTimeline.js +++ b/src/client/state/RoomTimeline.js @@ -63,6 +63,7 @@ class RoomTimeline extends EventEmitter { if (this.ongoingDecryptionCount > 0) return; if (this.isOngoingPagination) return; + this.addToTimeline(event); this.emit(cons.events.roomTimeline.EVENT); };