about summary refs log tree commit diff
path: root/app/services/post_status_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/post_status_service.rb')
-rw-r--r--app/services/post_status_service.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb
index e8fc6cdef..39bbe9f9e 100644
--- a/app/services/post_status_service.rb
+++ b/app/services/post_status_service.rb
@@ -9,6 +9,11 @@ class PostStatusService < BaseService
       next unless local_account.nil?
       follow_remote_account_service.("acct:#{match.first}")
     end
+
+    status.mentions.each do |mentioned_account|
+      next if mentioned_account.local?
+      send_interaction_service.(status.stream_entry, mentioned_account)
+    end
   end
 
   private
@@ -16,4 +21,8 @@ class PostStatusService < BaseService
   def follow_remote_account_service
     @follow_remote_account_service ||= FollowRemoteAccountService.new
   end
+
+  def send_interaction_service
+    @send_interaction_service ||= SendInteractionService.new
+  end
 end