From: ThibG Date: Tue, 8 May 2018 01:36:59 +0000 (+0200) Subject: Fix hashtags not being federated on mentions (fixes #6900) (#7406) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=993e68a7dd40a3fcb8312ee13f873da278e9e3fa;p=mastodon.git Fix hashtags not being federated on mentions (fixes #6900) (#7406) --- 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)