Skip to content

Commit

Permalink
fix for double decoding on confirm page issue #1361
Browse files Browse the repository at this point in the history
  • Loading branch information
kendallcorner committed Oct 15, 2019
1 parent a4c578a commit a874c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/confirm-page.js
@@ -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");
Expand Down

0 comments on commit a874c9c

Please sign in to comment.