]> cat aescling's git repositories - mastodon.git/commitdiff
Do not leak local-only toots to remote mentioned users
authorThibaut Girka <thib@sitedethib.com>
Mon, 22 Apr 2019 17:10:00 +0000 (19:10 +0200)
committerThibG <thib@sitedethib.com>
Mon, 22 Apr 2019 21:37:50 +0000 (23:37 +0200)
app/services/process_mentions_service.rb

index 2595c5fd3668c9743e3eed5d318b007c6ac1de15..1d9448e2136fc449d65c50d31c79209c6a55b188 100644 (file)
@@ -48,9 +48,9 @@ class ProcessMentionsService < BaseService
 
     if mentioned_account.local?
       LocalNotificationWorker.perform_async(mentioned_account.id, mention.id, mention.class.name)
-    elsif mentioned_account.ostatus? && !@status.stream_entry.hidden?
+    elsif mentioned_account.ostatus? && !@status.stream_entry.hidden? && !@status.local_only?
       NotificationWorker.perform_async(ostatus_xml, @status.account_id, mentioned_account.id)
-    elsif mentioned_account.activitypub?
+    elsif mentioned_account.activitypub? && !@status.local_only?
       ActivityPub::DeliveryWorker.perform_async(activitypub_json, mention.status.account_id, mentioned_account.inbox_url)
     end
   end