Browse Source

Fix `tootctl accounts delete` not deleting user record as well (#9874)

master
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
e9cd3636c6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/mastodon/accounts_cli.rb

+ 1
- 1
lib/mastodon/accounts_cli.rb View File

@@ -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



Loading…
Cancel
Save