Skip to content

Commit

Permalink
fix: fix check in mutatingAddPeerState (#838)
Browse files Browse the repository at this point in the history
  • Loading branch information
achou11 authored Sep 18, 2024
1 parent d4c5d07 commit 4f4b892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sync/namespace-sync-state.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function mutatingAddPeerState(accumulator, currentValue) {
accumulator.status === 'stopped'
} else if (
currentValue.status === 'starting' &&
accumulator.status === 'starting'
accumulator.status === 'started'
) {
accumulator.status = 'starting'
}
Expand Down

0 comments on commit 4f4b892

Please sign in to comment.