Skip to content

Commit

Permalink
fix: incorrect serious mode backup
Browse files Browse the repository at this point in the history
  • Loading branch information
tomli380576 committed Nov 1, 2022
1 parent 4aa7d87 commit b637d19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/attending-server/base-attending-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ class AttendingServerV2 {
return false;
}
await Promise.all([
this.serverExtensions.map(extension => extension.onServerRequestBackup(this)),
this._queues.map(queue => queue.setSeriousMode(enableSeriousMode))
this._queues.map(queue => queue.setSeriousMode(enableSeriousMode)),
this.serverExtensions.map(extension => extension.onServerRequestBackup(this))
]);
return true;
}
Expand Down

0 comments on commit b637d19

Please sign in to comment.