diff --git a/src/components/structures/TimelinePanel.tsx b/src/components/structures/TimelinePanel.tsx index 53beb54c56b..2140c5175e3 100644 --- a/src/components/structures/TimelinePanel.tsx +++ b/src/components/structures/TimelinePanel.tsx @@ -956,7 +956,7 @@ class TimelinePanel extends React.Component { continue; /* aborted */ } // outside of try/catch to not swallow errors - this.updateReadMarker(); + await this.updateReadMarker(); } } @@ -971,7 +971,7 @@ class TimelinePanel extends React.Component { continue; /* aborted */ } // outside of try/catch to not swallow errors - this.sendReadReceipts(); + await this.sendReadReceipts(); } }