mirror of https://github.com/daffainfo/nuclei.git
Merge pull request #317 from vzamanillo/workflow-results
Fixed result condition while processing workflowsdev
commit
76a4102a3f
|
@ -165,7 +165,7 @@ func (r *Runner) processWorkflowWithList(p progress.IProgress, workflow *workflo
|
|||
}
|
||||
|
||||
for _, variable := range variables {
|
||||
result = variable.IsFalsy()
|
||||
result = !variable.IsFalsy()
|
||||
if result {
|
||||
break
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue