diff --git a/web/src/auth/Util.js b/web/src/auth/Util.js index 0d061d64..fcff6732 100644 --- a/web/src/auth/Util.js +++ b/web/src/auth/Util.js @@ -87,11 +87,12 @@ function getRedirectUri() { return ""; } - const res = token.split("&")[0]; + let res = token.split("&")[0]; if (!res) { return ""; } + res = decodeURIComponent(res); return res; }