Skip to content

Commit

Permalink
Fix output split logic
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleparisi committed Apr 20, 2019
1 parent 8254ec1 commit ade2e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Link.vue
Expand Up @@ -137,7 +137,7 @@
// output side of link
if (typeof engine.outputs[source.node] !== "undefined" &&
typeof engine.outputs[source.port] !== "undefined"
typeof engine.outputs[source.node][source.port] !== "undefined"
) {
// fork channel
const pipe = new Channel();
Expand Down

0 comments on commit ade2e3d

Please sign in to comment.