mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 03:25:17 +01:00
Fix uncaught ActiveRecord::StatementInvalid exception in Mastodon::AccountsCLI#approve
(#24590)
This commit is contained in:
parent
c62604b5f6
commit
faf657d709
@ -543,7 +543,7 @@ module Mastodon
|
||||
if options[:all]
|
||||
User.pending.find_each(&:approve!)
|
||||
say('OK', :green)
|
||||
elsif options[:number]
|
||||
elsif options[:number]&.positive?
|
||||
User.pending.limit(options[:number]).each(&:approve!)
|
||||
say('OK', :green)
|
||||
elsif username.present?
|
||||
@ -557,6 +557,7 @@ module Mastodon
|
||||
account.user&.approve!
|
||||
say('OK', :green)
|
||||
else
|
||||
say('Number must be positive', :red) if options[:number]
|
||||
exit(1)
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user