detect hashtag using rel instead of class

このコミットが含まれているのは:
taehoon 2019-08-08 14:31:32 -04:00
コミット 5e99bad417
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -335,7 +335,7 @@ const Status = {
return
}
}
if (target.className.match(/hashtag/)) {
if (target.rel === 'tag') {
// Extract tag name from link url
const tag = extractTagFromUrl(target.href)
if (tag) {