diff --git a/runtime/elem/Runtime.h b/runtime/elem/Runtime.h index 055cd45..f5484a2 100644 --- a/runtime/elem/Runtime.h +++ b/runtime/elem/Runtime.h @@ -491,8 +491,8 @@ namespace elem { js::Object ret; - for (auto& [nodeId, node] : nodeTable) { - ret.insert({nodeIdToHex(nodeId), node->getProperties()}); + for (auto& [nodeId, entry] : nodeTable) { + ret.insert({nodeIdToHex(nodeId), entry.node->getProperties()}); } return ret;