diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-04-22 19:30:54 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:22 -0500 |
commit | 05ed9b6ceadf4aba4e71c84e5b8df0985e1bee4e (patch) | |
tree | 588b195c23710759b5108b5483c0703137c75b3a | |
parent | 534e19cbe3a3b234403fe6907cc9cb332eb5e456 (diff) |
`i:am`: replace horizontal rule with ZWNJ.
-rw-r--r-- | app/lib/bangtags.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/bangtags.rb b/app/lib/bangtags.rb index 534617d05..82214d1b1 100644 --- a/app/lib/bangtags.rb +++ b/app/lib/bangtags.rb @@ -421,7 +421,7 @@ class Bangtags description = @vars["_they:are:#{name}"] next if description.blank? || @chunks.last.starts_with?('—') status.local_only = true if Status::LOCAL_ONLY_TOKENS.match?(@chunks.last) - @chunks << "\n\n---\n— #{description}" + @chunks << "\n\n\u200c\n— #{description}" when 'media' media_idx = post_cmd[1] media_cmd = post_cmd[2] |