From b03415596b2649d8c25cc157ad6b6ba952d04fc7 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Sat, 1 Aug 2020 17:55:03 -0500 Subject: [Privacy, Federation] Include implicit mentions when delivering deletes --- app/services/remove_status_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/services') diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb index f9604071c..1aca3709a 100644 --- a/app/services/remove_status_service.rb +++ b/app/services/remove_status_service.rb @@ -15,7 +15,7 @@ class RemoveStatusService < BaseService @status = status @account = status.account @tags = status.tags.pluck(:name).to_a - @mentions = status.active_mentions.includes(:account).to_a + @mentions = status.mentions.includes(:account).to_a @reblogs = status.reblogs.includes(:account).to_a @options = options -- cgit