diff options
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/post_status_service.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index d86ae04d4..ae9b63abe 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -37,7 +37,8 @@ class PostStatusService < BaseService LinkCrawlWorker.perform_async(status.id) unless status.spoiler_text? DistributionWorker.perform_async(status.id) - unless /👁$/.match?(status.content) + # match both with and without U+FE0F (the emoji variation selector) + unless /[👁👁️]$/.match?(status.content) Pubsubhubbub::DistributionWorker.perform_async(status.stream_entry.id) end |