forked from AkkomaGang/akkoma-fe
use hashtag class detection as fallback
This commit is contained in:
parent
5e99bad417
commit
5aa2c44487
1 changed files with 1 additions and 1 deletions
|
@ -335,7 +335,7 @@ const Status = {
|
|||
return
|
||||
}
|
||||
}
|
||||
if (target.rel === 'tag') {
|
||||
if (target.rel === 'tag' || target.className.match(/hashtag/)) {
|
||||
// Extract tag name from link url
|
||||
const tag = extractTagFromUrl(target.href)
|
||||
if (tag) {
|
||||
|
|
Loading…
Reference in a new issue