Skip to content

Commit

Permalink
hotfix for previous PR mistakenly calling the get_project_workspace_i…
Browse files Browse the repository at this point in the history
…d function with incorrect args (#210)

* workspace tracking + black

* works

* fixed issue
  • Loading branch information
JR-Morgan authored Nov 5, 2024
1 parent b8b7c0b commit 7d9ef2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bpy_speckle/operators/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ def send(self, context: Context) -> None:
"branches": len(stream.branches),
# "collaborators": 0, #TODO:
"isMain": branch.name == "main",
"workspace_id": get_project_workspace_id(stream.id),
"workspace_id": get_project_workspace_id(client, stream.id),
},
)

Expand Down

0 comments on commit 7d9ef2d

Please sign in to comment.