Use artmap sender IPs for ArtNet flow association

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Ian Gulliver
2026-01-31 10:51:18 -08:00
parent 280e786b73
commit 61e3c905b0
2 changed files with 14 additions and 14 deletions

View File

@@ -137,8 +137,10 @@ export function showFlowView(flowSpec) {
const unicastInputs = node.sacn_unicast_inputs || [];
if (groups.some(g => g === 'sacn:' + universe) || unicastInputs.includes(universe)) destIds.push(node.id);
} else {
if ((node.artnet_outputs || []).includes(universe)) sourceIds.push(node.id);
if ((node.artnet_inputs || []).includes(universe)) destIds.push(node.id);
// artnet_inputs = sources (input from DMX, send to network)
// artnet_outputs = destinations (output to DMX, receive from network)
if ((node.artnet_inputs || []).includes(universe)) sourceIds.push(node.id);
if ((node.artnet_outputs || []).includes(universe)) destIds.push(node.id);
}
});
if (sourceIdent) {