diff options
author | ThibG <thib@sitedethib.com> | 2020-12-19 13:34:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 13:34:16 +0100 |
commit | c4e860277dbc391a0c6ec0311f66a8484cca862b (patch) | |
tree | cd9a11ad55cdcc669f91623f16885146ed5984d2 | |
parent | 3561f8fabed2a6c40130cb5f1d1d732393dc0200 (diff) |
Fix "tootctl accounts fix-duplicates" (#15373)
- `pluck_each` cannot be used this way with `group` - typo Co-authored-by: Claire <claire.github-309c@sitedethib.com>
-rw-r--r-- | lib/mastodon/accounts_cli.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mastodon/accounts_cli.rb b/lib/mastodon/accounts_cli.rb index 474643869..5275f04cf 100644 --- a/lib/mastodon/accounts_cli.rb +++ b/lib/mastodon/accounts_cli.rb @@ -245,10 +245,10 @@ module Mastodon domain configuration. LONG_DESC def fix_duplicates - Account.remote.select(:uri, 'count(*)').group(:uri).having('count(*) > 1').pluck_each(:uri) do |uri| + Account.remote.select(:uri, 'count(*)').group(:uri).having('count(*) > 1').pluck(:uri).each do |uri| say("Duplicates found for #{uri}") begin - ActivityPub::FetchRemotAccountService.new.call(uri) unless options[:dry_run] + ActivityPub::FetchRemoteAccountService.new.call(uri) unless options[:dry_run] rescue => e say("Error processing #{uri}: #{e}", :red) end |