fix for double decoding on confirm page issue #1361
This commit is contained in:
parent
a4c578adde
commit
a874c9c628
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