about summary refs log tree commit diff
path: root/app/services/post_status_service.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2018-05-08 03:36:59 +0200
committerEugen Rochko <eugen@zeonfederated.com>2018-05-08 03:36:59 +0200
commit993e68a7dd40a3fcb8312ee13f873da278e9e3fa (patch)
tree28b21458affb52cef12f130fceed9f295fd84467 /app/services/post_status_service.rb
parent6208ea5a531e8ece85ec29dd42dbc051e34a29e4 (diff)
Fix hashtags not being federated on mentions (fixes #6900) (#7406)
Diffstat (limited to 'app/services/post_status_service.rb')
-rw-r--r--app/services/post_status_service.rb2
1 files changed, 1 insertions, 1 deletions
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)