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

This commit is contained in:
Eugen Rochko 2019-01-20 12:30:25 +01:00 提交者 GitHub
父節點 d891b0b007
當前提交 e9cd3636c6
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 1 行新增1 行删除

查看文件

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