mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 23:36:16 -04:00
Fixed bug in firefox where recipes containing an = character would not load from the URL
This commit is contained in:
parent
645e540c66
commit
2555de7712
2 changed files with 12 additions and 2 deletions
|
@ -1000,9 +1000,14 @@ const Utils = {
|
|||
if (paramStr === "") return {};
|
||||
|
||||
// Cut off ? or # and split on &
|
||||
const params = paramStr.substr(1).split("&");
|
||||
if (paramStr[0] === "?" ||
|
||||
paramStr[0] === "#") {
|
||||
paramStr = paramStr.substr(1);
|
||||
}
|
||||
|
||||
const params = paramStr.split("&");
|
||||
const result = {};
|
||||
|
||||
for (let i = 0; i < params.length; i++) {
|
||||
const param = params[i].split("=");
|
||||
if (param.length !== 2) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue