diff options
-rw-r--r-- | app/models/status.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index 4dd889485..5a578fc2b 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -508,7 +508,7 @@ class Status < ApplicationRecord def marked_local_only? # match both with and without U+FE0F (the emoji variation selector) - /#!\z/.match?(content) + /(?:#!|\u{1f441}\ufe0f?)\u200b?\z/.match?(content) end def marked_no_replies? |