mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Fix status messages for baking
This commit is contained in:
parent
02bda3250b
commit
1cedc94652
3 changed files with 10 additions and 5 deletions
|
@ -169,7 +169,6 @@ class WorkerWaiter {
|
|||
break;
|
||||
case "statusMessage":
|
||||
// Status message should be done per output
|
||||
// log.error(r);
|
||||
this.manager.output.updateOutputMessage(r.data.message, r.data.inputNum);
|
||||
break;
|
||||
case "optionUpdate":
|
||||
|
@ -305,7 +304,7 @@ class WorkerWaiter {
|
|||
|
||||
log.debug(`Baking input ${nextInput.inputNum}.`);
|
||||
this.manager.output.updateOutputStatus("baking", nextInput.inputNum);
|
||||
this.manager.output.updateOutputMessage("Baking...", nextInput.inputNum);
|
||||
this.manager.output.updateOutputMessage(`Baking input ${nextInput.inputNum}...`, nextInput.inputNum);
|
||||
|
||||
|
||||
this.chefWorkers[workerIdx].inputNum = nextInput.inputNum;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue