From 0e8287e4a8b96f1eb65d66249841c4f673deb5b5 Mon Sep 17 00:00:00 2001 From: Flo Greistorfer Date: Fri, 27 Jun 2025 09:09:05 +0200 Subject: [PATCH] more percentencode --- templates/index.html.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html.j2 b/templates/index.html.j2 index 0f71121..c525602 100644 --- a/templates/index.html.j2 +++ b/templates/index.html.j2 @@ -292,7 +292,7 @@ shown = []; const curr = window.location.href.split("#")[0] + "#"; - const path = window.location.href.split("#")[0].replace("index.html", ""); + const path = window.location.href.split("#")[0].replace("index.html", "").replace("(", "%28").replace(")", "%29"); const selected_tags = []; const tagcheckboxes = document.querySelectorAll("#tagdropdown input[class='tag']:checked");