From: ThibG Date: Fri, 29 Jan 2021 17:38:56 +0000 (+0100) Subject: Fix “tootctl accounts unfollow” (#15639) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=13d5b8157904b2eb6b7f43e3fb834fca2f38f0dd;p=mastodon.git Fix “tootctl accounts unfollow” (#15639) Fixes #15635 Co-authored-by: Claire --- diff --git a/lib/mastodon/accounts_cli.rb b/lib/mastodon/accounts_cli.rb index 653bfca30..74162256f 100644 --- a/lib/mastodon/accounts_cli.rb +++ b/lib/mastodon/accounts_cli.rb @@ -402,7 +402,7 @@ module Mastodon exit(1) end - parallelize_with_progress(target_account.followers.local) do |account| + processed, = parallelize_with_progress(target_account.followers.local) do |account| UnfollowService.new.call(account, target_account) end