diff options
author | ThibG <thib@sitedethib.com> | 2018-05-08 03:36:59 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-08 03:36:59 +0200 |
commit | 993e68a7dd40a3fcb8312ee13f873da278e9e3fa (patch) | |
tree | 28b21458affb52cef12f130fceed9f295fd84467 /app | |
parent | 6208ea5a531e8ece85ec29dd42dbc051e34a29e4 (diff) |
Fix hashtags not being federated on mentions (fixes #6900) (#7406)
Diffstat (limited to 'app')
-rw-r--r-- | app/services/post_status_service.rb | 2 |
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) |