commit bda9d267561218c20d26cc702b4ecbc54eea9c6a
parent a2b953743f3f18bfcdcf93678183d135cb45be14
Author: Michael Dwyer <mdwyer@michaelmdwyer.com>
Date: Fri, 18 Nov 2016 22:42:12 -0600
Add support for uri in signature
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/modes/thread_view_mode.rb b/lib/sup/modes/thread_view_mode.rb
@@ -773,7 +773,7 @@ EOS
# ]
linetext = @text.slice(curpos, @text.length).flatten(1)
- .take_while{|d| d[0] == :text_color and d[1].strip != ""} # Only take up to the first "" alone on its line
+ .take_while{|d| [:text_color, :sig_color].include?(d[0]) and d[1].strip != ""} # Only take up to the first "" alone on its line
.map{|d| d[1].strip}.join("").strip
found = false