From b221baef553f5d31e7ec1bbca8253c2f754b42d2 Mon Sep 17 00:00:00 2001 From: Ratko Zagorac Date: Wed, 9 Oct 2024 08:11:25 +0200 Subject: [PATCH] MWPW-159906: Decode url hash --- edsdme/scripts/scripts.js | 1 + 1 file changed, 1 insertion(+) diff --git a/edsdme/scripts/scripts.js b/edsdme/scripts/scripts.js index bb37fa6..3b37ad3 100644 --- a/edsdme/scripts/scripts.js +++ b/edsdme/scripts/scripts.js @@ -51,6 +51,7 @@ const CONFIG = { }; (function removeAccessToken() { + window.location.hash = decodeURIComponent(window.location.hash); if (window.location.hash.startsWith('#access_token')) { window.location.hash = ''; }