Browse Source

Fix tootctl accounts reattaching not unsuspending deleted account (#8812)

pull/4/head
Eugen Rochko 5 years ago
committed by Yamagishi Kazutoshi
parent
commit
ac07bfb018
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      lib/mastodon/accounts_cli.rb

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

@ -83,7 +83,8 @@ module Mastodon
end
end
user.account = account
account.suspended = false
user.account = account
if user.save
if options[:confirmed]

Loading…
Cancel
Save