mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 22:21:01 +01:00
Bake in the right order
This commit is contained in:
parent
8739dd97d6
commit
76da287cca
@ -139,7 +139,8 @@ class WorkerWaiter {
|
||||
this.updateOutput(r.data, r.data.inputNum);
|
||||
|
||||
if (this.inputs.length > 0) {
|
||||
const nextInput = this.inputs.pop();
|
||||
const nextInput = this.inputs[0];
|
||||
this.inputs.splice(0, 1);
|
||||
log.debug(`Baking input ${nextInput.inputNum}.`);
|
||||
this.manager.output.updateOutputStatus("baking", nextInput.inputNum);
|
||||
this.manager.output.updateOutputMessage("Baking...", nextInput.inputNum);
|
||||
|
Loading…
Reference in New Issue
Block a user