From 76b9aa1b0248001d0b43744572344cd6dad9a28b Mon Sep 17 00:00:00 2001 From: space-nuko <24979496+space-nuko@users.noreply.github.com> Date: Wed, 24 May 2023 00:54:38 -0500 Subject: [PATCH] Forgot to send frontend inputs thru ComfyReroute --- src/lib/nodes/ComfyReroute.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/nodes/ComfyReroute.ts b/src/lib/nodes/ComfyReroute.ts index 82567cc..7eea546 100644 --- a/src/lib/nodes/ComfyReroute.ts +++ b/src/lib/nodes/ComfyReroute.ts @@ -50,6 +50,10 @@ export default class ComfyReroute extends ComfyGraphNode { } } + override onExecute() { + this.setOutputData(0, this.getInputData(0)); + } + override getUpstreamLink(): LLink | null { const link = this.getInputLink(0) const node = this.getInputNode(0)