Increment index which was previously not used in maintenance CLI loop (#25118)
parent
ec9bc7e604
commit
2cecb2dc9e
|
@ -225,9 +225,8 @@ module Mastodon::CLI
|
||||||
@prompt.warn "e-mail will be disabled for the following accounts: #{user.map(&:account).map(&:acct).join(', ')}"
|
@prompt.warn "e-mail will be disabled for the following accounts: #{user.map(&:account).map(&:acct).join(', ')}"
|
||||||
@prompt.warn 'Please reach out to them and set another address with `tootctl account modify` or delete them.'
|
@prompt.warn 'Please reach out to them and set another address with `tootctl account modify` or delete them.'
|
||||||
|
|
||||||
i = 0
|
users.each_with_index do |user, index|
|
||||||
users.each do |user|
|
user.update!(email: "#{index} " + user.email)
|
||||||
user.update!(email: "#{i} " + user.email)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Reference in New Issue