mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-03-10 03:37:33 +08:00
Fix internal node id check
This commit is contained in:
parent
18cbab1d84
commit
34fd915eec
@ -542,7 +542,7 @@ const ext = {
|
||||
}
|
||||
} else if (this[GROUP_IDS]) {
|
||||
// Check if this is an internal node using its original ID
|
||||
const internalId = Object.values(this[GROUP_IDS]).indexOf(id);
|
||||
const internalId = Object.values(this[GROUP_IDS]).indexOf(+id);
|
||||
if (internalId > -1) {
|
||||
groupNode = this;
|
||||
runningId = internalId;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user