mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-23 16:26:16 -04:00
BUGFIX: Jump operations skipping an operation once maxJumps reached.
This commit is contained in:
parent
3ad4291258
commit
70603be5ab
2 changed files with 45 additions and 2 deletions
|
@ -128,7 +128,6 @@ var FlowControl = {
|
|||
maxJumps = ings[1];
|
||||
|
||||
if (state.numJumps >= maxJumps) {
|
||||
state.progress++;
|
||||
return state;
|
||||
}
|
||||
|
||||
|
@ -156,7 +155,6 @@ var FlowControl = {
|
|||
maxJumps = ings[2];
|
||||
|
||||
if (state.numJumps >= maxJumps) {
|
||||
state.progress++;
|
||||
return state;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue