Skip to content

Commit

Permalink
Fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Paul committed Aug 7, 2020
1 parent dc46700 commit f264e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bridge/PublicitySyncer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export class PublicitySyncer {
}

// Filter out already checked channels
channels = channels.filter((c) => checkedChannels.includes(c));
channels = channels.filter((c) => !checkedChannels.includes(c));

const anyAreSecret = channels.some((channel) => {
let channelIsSecret = this.visibilityMap.channelIsSecret[channel];
Expand Down

0 comments on commit f264e53

Please sign in to comment.