mirror of
https://github.com/gchq/CyberChef
synced 2025-12-05 23:53:27 +00:00
Removed excess auto-baking on input load from URI
This commit is contained in:
@@ -402,10 +402,14 @@ App.prototype.loadURIParams = function() {
|
||||
|
||||
// Read in input data from URI params
|
||||
if (this.uriParams.input) {
|
||||
this.autoBakePause = true;
|
||||
try {
|
||||
const inputData = Utils.fromBase64(this.uriParams.input);
|
||||
this.setInput(inputData);
|
||||
} catch (err) {}
|
||||
} catch (err) {
|
||||
} finally {
|
||||
this.autoBakePause = false;
|
||||
}
|
||||
}
|
||||
|
||||
this.autoBake();
|
||||
|
||||
Reference in New Issue
Block a user