Fix internal id

This commit is contained in:
pythongosssss 2023-11-09 07:48:24 +00:00
parent 9d41993ae8
commit da4feb682d

View File

@ -489,10 +489,10 @@ const ext = {
} }
} else if (this[GROUP_IDS]) { } else if (this[GROUP_IDS]) {
// Check if this is an internal node using its original ID // Check if this is an internal node using its original ID
const isInternal = Object.values(this[GROUP_IDS]).indexOf(id) > -1; const internalId = Object.values(this[GROUP_IDS]).indexOf(id);
if (isInternal) { if (internalId > -1) {
groupNode = this; groupNode = this;
runningId = id; runningId = internalId;
} }
} }
if (groupNode) { if (groupNode) {