about summary refs log tree commit diff
path: root/app/services/mute_conversation_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/mute_conversation_service.rb')
-rw-r--r--app/services/mute_conversation_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/mute_conversation_service.rb b/app/services/mute_conversation_service.rb
index 56defae52..a12bf9533 100644
--- a/app/services/mute_conversation_service.rb
+++ b/app/services/mute_conversation_service.rb
@@ -5,6 +5,6 @@ class MuteConversationService < BaseService
     return if account.blank? || conversation.blank?
 
     account.mute_conversation!(conversation)
-    MuteConversationWorker.perform_async(account.id, conversation.id) unless account.id == conversation.account_id
+    MuteConversationWorker.perform_async(account.id, conversation.id)
   end
 end