Support source information in complete node

pull/5414/head
Kazuhito Yokoi 2026-01-04 17:36:18 +09:00
parent 6a75a084ad
commit e108554ea0
1 changed files with 7 additions and 0 deletions

View File

@ -699,6 +699,13 @@ class Flow {
let toSend = msg;
this.completeNodeMap[node.id].forEach((completeNode,index) => {
toSend = redUtil.cloneMessage(msg);
toSend.complete = {
source: {
id: node.id,
type: node.type,
name: node.name
}
};
completeNode.receive(toSend);
})
}