mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Fix fork operation not setting ingredient values correctly.
This commit is contained in:
parent
8148c1a8a8
commit
2b538061e9
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ class Fork extends Operation {
|
||||||
// Run recipe over each tranche
|
// Run recipe over each tranche
|
||||||
for (i = 0; i < inputs.length; i++) {
|
for (i = 0; i < inputs.length; i++) {
|
||||||
// Baseline ing values for each tranche so that registers are reset
|
// Baseline ing values for each tranche so that registers are reset
|
||||||
subOpList.forEach((op, i) => {
|
recipe.opList.forEach((op, i) => {
|
||||||
op.ingValues = JSON.parse(JSON.stringify(ingValues[i]));
|
op.ingValues = JSON.parse(JSON.stringify(ingValues[i]));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue