From 15b35d99ce296b06b9b82c9f9e85f0e1f2a571ac Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Mon, 22 Apr 2019 14:39:13 -0500 Subject: `i:am`: Do not add a signature if the author inserted their own. --- app/lib/bangtags.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/lib/bangtags.rb') diff --git a/app/lib/bangtags.rb b/app/lib/bangtags.rb index 0567caf6d..2c807166d 100644 --- a/app/lib/bangtags.rb +++ b/app/lib/bangtags.rb @@ -419,7 +419,7 @@ class Bangtags name = @vars['_they:are'] next if name.blank? description = @vars["_they:are:#{name}"] - next if description.blank? + 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}" when 'media' -- cgit