Skip to content

Commit

Permalink
Merge branch 'dev' into claire/cnx-931-create-archicadobject-in-speck…
Browse files Browse the repository at this point in the history
…le-sharp-sdk
  • Loading branch information
adamhathcock authored Jan 14, 2025
2 parents c6556fa + b3c6a75 commit 19a5ccf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Speckle.Sdk/Serialisation/V2/Receive/ObjectLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ CancellationToken cancellationToken
{
//assume everything exists as the root is there.
var allChildren = ClosureParser.GetChildrenIds(rootJson).ToList();
//this probably yields away from the Main thread to let host apps update progress
//in any case, this fixes a Revit only issue for this situation
await Task.Yield();
return (rootJson, allChildren);
}
}
Expand Down

0 comments on commit 19a5ccf

Please sign in to comment.