* Fixing broken video links in href

This commit is contained in:
shockrah 2021-10-22 23:59:27 -07:00
parent 12525b8cd5
commit f327d993c5

View File

@ -43,7 +43,7 @@ class VideoMeta {
} }
let link = document.createElement('a') let link = document.createElement('a')
if(this.name) { if(this.name) {
link.href = `/category/${this.name}` link.href = `/clip/${this.category}/${this.name}`
} else { } else {
link.href = '#' link.href = '#'
} }