Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Handle more primises
Browse files Browse the repository at this point in the history
  • Loading branch information
weeman1337 committed May 12, 2023
1 parent af38337 commit 277251a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/structures/TimelinePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ class TimelinePanel extends React.Component<IProps, IState> {
continue; /* aborted */
}
// outside of try/catch to not swallow errors
this.updateReadMarker();
await this.updateReadMarker();
}
}

Expand All @@ -971,7 +971,7 @@ class TimelinePanel extends React.Component<IProps, IState> {
continue; /* aborted */
}
// outside of try/catch to not swallow errors
this.sendReadReceipts();
await this.sendReadReceipts();
}
}

Expand Down

0 comments on commit 277251a

Please sign in to comment.