Skip to content

Commit

Permalink
Added missing "|"
Browse files Browse the repository at this point in the history
  • Loading branch information
xeolabs committed Jul 19, 2023
1 parent 4a2cdba commit 7346207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/viewer/metadata/MetaScene.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class MetaScene {
const metaObjectData = metaModelData.metaObjects[i];
const type = metaObjectData.type;
const id = metaObjectData.id;
const propertySetIds = metaObjectData.propertySets | metaObjectData.propertySetIds;
const propertySetIds = metaObjectData.propertySets || metaObjectData.propertySetIds;
let metaObject = this.metaObjects[id];
if (!metaObject) {
metaObject = new MetaObject({
Expand Down

0 comments on commit 7346207

Please sign in to comment.