mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
Fix wrong variable name
This commit is contained in:
parent
760465959f
commit
fa50723807
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ module Jobs
|
|||
demoted_user_ids = []
|
||||
User.real.where(trust_level: TrustLevel[3], trust_level_locked: false).find_each do |u|
|
||||
# Don't demote too soon after being promoted
|
||||
next if user.on_leader_grace_period?
|
||||
next if u.on_leader_grace_period?
|
||||
|
||||
if Promotion.tl3_lost?(u)
|
||||
demoted_user_ids << u.id
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue