From 10be4c496c12a4d6afda5a82ceae9d38f4016c37 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 3080fb2447..8a1a120c38 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)