diff options
author | Fire Demon <firedemon@creature.cafe> | 2020-08-01 17:55:03 -0500 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-08-30 05:45:17 -0500 |
commit | b03415596b2649d8c25cc157ad6b6ba952d04fc7 (patch) | |
tree | 59377f3031dac1396e6d658b8154165afdf35bef /app/services | |
parent | 99ee21981249193e9125e1d7802282489fbdd457 (diff) |
[Privacy, Federation] Include implicit mentions when delivering deletes
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/remove_status_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |