Skip to content

Commit 92259b1

Browse files
committed
fix eval
1 parent 8a19498 commit 92259b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/eval.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
const urlParams = new URLSearchParams(window.location.search);
1414
const param = urlParams.get(name);
1515
if (param !== null) {
16-
return decodeURIComponent(param.replace(/\+/g, "%20"));
16+
return decodeURIComponent(param.replace(/\%2B/g, "+"));
1717
} else {
1818
return null;
1919
}

0 commit comments

Comments
 (0)