Fix non-lowercase hashtags not being picked up by the streaming API (#11508)
Regression from f371b32
Fix hashtag links always being lowercase
This commit is contained in:
@ -294,7 +294,7 @@ class Formatter
|
||||
end
|
||||
|
||||
def hashtag_html(tag)
|
||||
"<a href=\"#{encode(tag_url(tag.downcase))}\" class=\"mention hashtag\" rel=\"tag\">#<span>#{encode(tag)}</span></a>"
|
||||
"<a href=\"#{encode(tag_url(tag))}\" class=\"mention hashtag\" rel=\"tag\">#<span>#{encode(tag)}</span></a>"
|
||||
end
|
||||
|
||||
def mention_html(account)
|
||||
|
Reference in New Issue
Block a user