Ensure subflow credential objects exist

Fixes #2783
This commit is contained in:
Nick O'Leary
2020-12-15 17:20:22 +00:00
parent 02510efda1
commit 496b5a092f

View File

@@ -117,8 +117,8 @@ class Subflow extends Flow {
this.node_map = node_map;
this.path = parent.path+"/"+(subflowInstance._alias||subflowInstance.id);
this.templateCredentials = credentials.get(subflowDef.id);
this.instanceCredentials = credentials.get(this.id);
this.templateCredentials = credentials.get(subflowDef.id) || {};
this.instanceCredentials = credentials.get(this.id) || {};
var env = [];
if (this.subflowDef.env) {