Merge pull request #1535 from kendallcorner/urldecode
Fix for double decoding on confirm page issue #1361
This commit is contained in:
commit
97169d6f17
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
async function load() {
|
||||
const searchParams = new URL(window.location).searchParams;
|
||||
const redirectUrl = decodeURIComponent(searchParams.get("url"));
|
||||
const redirectUrl = searchParams.get("url");
|
||||
const cookieStoreId = searchParams.get("cookieStoreId");
|
||||
const currentCookieStoreId = searchParams.get("currentCookieStoreId");
|
||||
const redirectUrlElement = document.getElementById("redirect-url");
|
||||
|
|
Loading…
Add table
Reference in a new issue