`ActivityPub::ProcessAccountService`: Correct `force_` method names.

staging
multiple creatures 2019-05-10 04:27:13 -05:00
parent 6834ddffc9
commit 8d12242216
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@ class ActivityPub::ProcessAccountService < BaseService
@account.private_key = nil
@account.suspended_at = domain_block.created_at if auto_suspend?
@account.silenced_at = domain_block.created_at if auto_silence?
@account.force_unlisted = true if force_unlisted?
@account.force_sensitive = true if force_sensitive?
@account.force_unlisted = true if auto_force_unlisted?
@account.force_sensitive = true if auto_force_sensitive?
end
def update_account