]> cat aescling's git repositories - mastodon.git/commitdiff
Fix hashtags not being federated on mentions (fixes #6900) (#7406)
authorThibG <thib@sitedethib.com>
Tue, 8 May 2018 01:36:59 +0000 (03:36 +0200)
committerEugen Rochko <eugen@zeonfederated.com>
Tue, 8 May 2018 01:36:59 +0000 (03:36 +0200)
app/services/post_status_service.rb

index 3080fb24473679f91784abff13b8ed6234ecb3ef..8a1a120c38cd660f509548fc633744a25e6b85a8 100644 (file)
@@ -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)