Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
fix excluded mods
Browse files Browse the repository at this point in the history
Closes #1862
  • Loading branch information
jjeffryes committed Jan 16, 2020
1 parent 321585d commit 841a0d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/views/components/moderators/Moderators.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export default class extends baseVw {

// don't get any that have already been added or excluded.
const excluded = [...this.allIDs, ...this.excludeIDs];
this.modsToFetch = _.without(op.moderatorIDs, excluded);
this.modsToFetch = _.without(op.moderatorIDs, ...excluded);
this.unfetchedMods = [...this.modsToFetch];
this.fetchingVerifiedMods = app.verifiedMods.matched(this.modsToFetch);

Expand Down

0 comments on commit 841a0d4

Please sign in to comment.