Skip to content

Commit

Permalink
bf: handle mixed bag of children with and without ids
Browse files Browse the repository at this point in the history
  • Loading branch information
jchick-bentley committed Jun 24, 2024
1 parent f65d611 commit 4d3fcdf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Synchronizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,10 @@ export class Synchronizer {
if (stat !== IModelStatus.Success) {
return stat;
}
} else if (childRes.itemState === ItemState.New) {
const stat = this.insertResultsIntoIModel(childRes, parentAspectProps);
if (stat !== IModelStatus.Success)
return stat;
}
}
return IModelStatus.Success;
Expand Down

0 comments on commit 4d3fcdf

Please sign in to comment.