Add env type to subflow env var types

Also remove date and regex types
This commit is contained in:
Nick O'Leary
2019-02-06 13:58:31 +00:00
parent 2a8f0a4eab
commit d48a09e68b
3 changed files with 10 additions and 13 deletions

View File

@@ -265,7 +265,7 @@ class Subflow extends Flow {
if (env && env.hasOwnProperty(name)) {
var val = env[name];
try {
var ret = redUtil.evaluateNodeProperty(val.value, val.type, null, null, null);
var ret = redUtil.evaluateNodeProperty(val.value, val.type, this.node, null, null);
return ret;
}
catch (e) {