From f327d993c5c6cb7233b83f080b18878dfedcedc1 Mon Sep 17 00:00:00 2001 From: shockrah Date: Fri, 22 Oct 2021 23:59:27 -0700 Subject: [PATCH] * Fixing broken video links in href --- ts/category.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/category.ts b/ts/category.ts index 26a45dd..e9c7f52 100644 --- a/ts/category.ts +++ b/ts/category.ts @@ -43,7 +43,7 @@ class VideoMeta { } let link = document.createElement('a') if(this.name) { - link.href = `/category/${this.name}` + link.href = `/clip/${this.category}/${this.name}` } else { link.href = '#' }