diff options
Diffstat (limited to 'app/services/mute_service.rb')
-rw-r--r-- | app/services/mute_service.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/services/mute_service.rb b/app/services/mute_service.rb index 132369484..a9a02937e 100644 --- a/app/services/mute_service.rb +++ b/app/services/mute_service.rb @@ -1,9 +1,9 @@ # frozen_string_literal: true class MuteService < BaseService - def call(account, target_account) + def call(account, target_account, notifications: nil) return if account.id == target_account.id - mute = account.mute!(target_account) + account.mute!(target_account, notifications: notifications) BlockWorker.perform_async(account.id, target_account.id) mute end |