mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Removed excess auto-baking on input load from URI
This commit is contained in:
parent
392652ed8e
commit
d54d7011d9
1 changed files with 5 additions and 1 deletions
|
@ -402,10 +402,14 @@ App.prototype.loadURIParams = function() {
|
||||||
|
|
||||||
// Read in input data from URI params
|
// Read in input data from URI params
|
||||||
if (this.uriParams.input) {
|
if (this.uriParams.input) {
|
||||||
|
this.autoBakePause = true;
|
||||||
try {
|
try {
|
||||||
const inputData = Utils.fromBase64(this.uriParams.input);
|
const inputData = Utils.fromBase64(this.uriParams.input);
|
||||||
this.setInput(inputData);
|
this.setInput(inputData);
|
||||||
} catch (err) {}
|
} catch (err) {
|
||||||
|
} finally {
|
||||||
|
this.autoBakePause = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.autoBake();
|
this.autoBake();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue