From ef8e5fa1a8d99275fa774605ce1146db18a193fd Mon Sep 17 00:00:00 2001 From: Mechiel Lukkien Date: Thu, 16 Feb 2023 10:26:28 +0100 Subject: [PATCH] on accounts page, fix opening destination with utf8 by decoding location.hash --- http/account.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/account.html b/http/account.html index 54966c4..356e54a 100644 --- a/http/account.html +++ b/http/account.html @@ -614,7 +614,7 @@ const init = async () => { if (curhash === window.location.hash) { return } - let h = window.location.hash + let h = decodeURIComponent(window.location.hash) if (h !== '' && h.substring(0, 1) == '#') { h = h.substring(1) }