about summary refs log tree commit diff
path: root/app/services/mute_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/mute_service.rb')
-rw-r--r--app/services/mute_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/mute_service.rb b/app/services/mute_service.rb
index 67df92f5c..5e7e1d292 100644
--- a/app/services/mute_service.rb
+++ b/app/services/mute_service.rb
@@ -7,7 +7,7 @@ class MuteService < BaseService
     mute = account.mute!(target_account, notifications: notifications, timelines_only: timelines_only, duration: duration)
 
     if mute.hide_notifications?
-      BlockWorker.perform_async(account.id, target_account.id)
+      BlockWorker.perform_async(account.id, target_account.id, defederate: false)
     else
       MuteWorker.perform_async(account.id, target_account.id)
     end