mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 00:36:16 -04:00
Bake in the right order
This commit is contained in:
parent
8739dd97d6
commit
76da287cca
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue