Skip to content
Snippets Groups Projects
Commit 195eb42c authored by Gandalf's avatar Gandalf
Browse files

[JES] Messed up indent and was missing the bad reputation lists. This should fix that

parent da11bb38
No related branches found
No related tags found
5 merge requests!456Release candidate v1 24,!230Setup monitoring with pghero,!135Enable postgres monitoring on CI server,!16Dk issue 3 concurrent block query rebase,!15Dk issue 3 concurrent block query
......@@ -78,11 +78,10 @@ class Mutes:
if 'irredeemables' not in blacklists_for_user:
blacklists_for_user.append('irredeemables')
if int(rep) < 1:
blacklists_for_user.append('reputation-0') #bad reputation
if int(rep) == 1:
blacklists_for_user.append('reputation-1') #bad reputation
inst.blist_map[name] = blacklists_for_user
if int(rep) < 1:
blacklists_for_user.append('reputation-0') #bad reputation
if int(rep) == 1:
blacklists_for_user.append('reputation-1') #bad reputation
inst.blist_map[name] = blacklists_for_user
return inst.blist_map[name]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment