about summary refs log tree commit diff
path: root/lib/mastodon/accounts_cli.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-01-20 12:30:25 +0100
committerGitHub <noreply@github.com>2019-01-20 12:30:25 +0100
commite9cd3636c67ec033aa3dc23f46793d79e9dd03d5 (patch)
treebc91bd969f8af15a9acf38f5ccd75a70e4cf9e90 /lib/mastodon/accounts_cli.rb
parentd891b0b007e6c8c04f4ec394a06ca3b55913abed (diff)
Fix `tootctl accounts delete` not deleting user record as well (#9874)
Diffstat (limited to 'lib/mastodon/accounts_cli.rb')
-rw-r--r--lib/mastodon/accounts_cli.rb2
1 files changed, 1 insertions, 1 deletions
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