Skip to content

Commit

Permalink
Fix pset originalSystemId
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed Aug 8, 2023
1 parent 00380b0 commit c088e62
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/viewer/metadata/MetaScene.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,13 @@ class MetaScene {
const metaObjectData = metaModelData.metaObjects[i];
const type = metaObjectData.type;
const id = metaObjectData.id;
const originalSystemId = metaObjectData.originalSystemId;
const propertySetIds = metaObjectData.propertySets || metaObjectData.propertySetIds;
let metaObject = this.metaObjects[id];
if (!metaObject) {
metaObject = new MetaObject({
id,
originalSystemId,
parentId: metaObjectData.parent,
type,
name: metaObjectData.name,
Expand Down

0 comments on commit c088e62

Please sign in to comment.