From: Eugen Rochko Date: Sun, 20 Jan 2019 11:30:25 +0000 (+0100) Subject: Fix `tootctl accounts delete` not deleting user record as well (#9874) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=e9cd3636c67ec033aa3dc23f46793d79e9dd03d5;p=mastodon.git Fix `tootctl accounts delete` not deleting user record as well (#9874) --- diff --git a/lib/mastodon/accounts_cli.rb b/lib/mastodon/accounts_cli.rb index 24fb67991..dca31cdca 100644 --- a/lib/mastodon/accounts_cli.rb +++ b/lib/mastodon/accounts_cli.rb @@ -176,7 +176,7 @@ module Mastodon end say("Deleting user with #{account.statuses_count} statuses, this might take a while...") - SuspendAccountService.new.call(account, remove_user: true) + SuspendAccountService.new.call(account, including_user: true) say('OK', :green) end