Browse Source

Fix hashtags not being federated on mentions (fixes #6900) (#7406)

pull/4/head
ThibG 6 years ago
committed by Eugen Rochko
parent
commit
993e68a7dd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/post_status_service.rb

+ 1
- 1
app/services/post_status_service.rb View 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)

Loading…
Cancel
Save