From 8efbea953c436af514f6b39eb22316100e522c90 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Sat, 15 Aug 2020 02:12:04 -0500 Subject: [Federation] Force out-of-body mentions to be delivered without a notification --- app/services/process_mentions_service.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'app/services/process_mentions_service.rb') diff --git a/app/services/process_mentions_service.rb b/app/services/process_mentions_service.rb index fea00ef4f..2ec21f22b 100644 --- a/app/services/process_mentions_service.rb +++ b/app/services/process_mentions_service.rb @@ -8,13 +8,12 @@ class ProcessMentionsService < BaseService # remote users # @param [Status] status # @option [Enumerable] :mentions Mentions to include - # @option [Boolean] :reveal_implicit_mentions Append implicit mentions to text # @option [Boolean] :deliver Deliver mention notifications def call(status, mentions: [], reveal_implicit_mentions: true, deliver: true) return unless status.local? @status = status - @status.text, mentions = ResolveMentionsService.new.call(@status, mentions: mentions, reveal_implicit_mentions: reveal_implicit_mentions) + @status.text, mentions = ResolveMentionsService.new.call(@status, mentions: mentions) @status.save! return unless deliver -- cgit