FIX: first @mention/#hashtag is not a hyperlink in Twitter onebox

https://meta.discourse.org/t/first-mention-is-not-a-hyperlink-in-twitter-onebox/65665
This commit is contained in:
Arpit Jalan 2017-07-07 21:47:44 +05:30
parent 74f6894606
commit c47658c7c5
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ class TwitterApi
protected
def link_handles_in(text)
text.scan(/\s@(\w+)/).flatten.uniq.each do |handle|
text.scan(/(?:^|\s)@(\w+)/).flatten.uniq.each do |handle|
text.gsub!("@#{handle}", [
"<a href='https://twitter.com/#{handle}' target='_blank'>",
"@#{handle}",
@ -68,7 +68,7 @@ class TwitterApi
end
def link_hashtags_in(text)
text.scan(/\s#(\w+)/).flatten.uniq.each do |hashtag|
text.scan(/(?:^|\s)#(\w+)/).flatten.uniq.each do |hashtag|
text.gsub!("##{hashtag}", [
"<a href='https://twitter.com/search?q=%23#{hashtag}' ",
"target='_blank'>",