Skip to content
Snippets Groups Projects
Verified Commit f541f1f1 authored by Gabriel Zachmann's avatar Gabriel Zachmann
Browse files

fix query parameter parsing

parent 2df6dd59
No related branches found
No related tags found
No related merge requests found
Pipeline #323237 passed
......@@ -33,6 +33,9 @@ function fillPropertiesFromQuery() {
get: (searchParams, prop) => searchParams.get(prop),
});
const base64 = params.r;
if (base64 == undefined) {
return;
}
const req_str = window.atob(base64);
console.log(req_str);
const req = JSON.parse(req_str);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment