about summary refs log tree commit diff
path: root/app/workers/notification_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/notification_worker.rb')
-rw-r--r--app/workers/notification_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/notification_worker.rb b/app/workers/notification_worker.rb
index 129512a5a..473a9232b 100644
--- a/app/workers/notification_worker.rb
+++ b/app/workers/notification_worker.rb
@@ -2,6 +2,6 @@ class NotificationWorker
   include Sidekiq::Worker
 
   def perform(stream_entry_id, target_account_id)
-    SendInteractionService.new.(StreamEntry.find(stream_entry_id), Account.find(target_account_id))
+    SendInteractionService.new.call(StreamEntry.find(stream_entry_id), Account.find(target_account_id))
   end
 end