Skip to content

Commit

Permalink
fix logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
hansieodendaal committed Jan 27, 2025
1 parent 3dc3934 commit 137f4ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ impl Listening {
}
}

if !self.is_synced && sync_mode.is_up_to_date() || shared.is_bootstrapped() {
if !self.is_synced && sync_mode.is_up_to_date() || !self.is_synced && shared.is_bootstrapped() {
self.is_synced = true;
self.initial_delay_count = 0;
shared.set_state_info(StateInfo::Listening(ListeningInfo::new(
Expand Down

0 comments on commit 137f4ca

Please sign in to comment.