From 993e68a7dd40a3fcb8312ee13f873da278e9e3fa Mon Sep 17 00:00:00 2001 From: ThibG Date: Tue, 8 May 2018 03:36:59 +0200 Subject: [PATCH] Fix hashtags not being federated on mentions (fixes #6900) (#7406) --- app/services/post_status_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index 3080fb244..8a1a120c3 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -35,8 +35,8 @@ class PostStatusService < BaseService application: options[:application]) end - process_mentions_service.call(status) process_hashtags_service.call(status) + process_mentions_service.call(status) LinkCrawlWorker.perform_async(status.id) unless status.spoiler_text? DistributionWorker.perform_async(status.id)