Compare commits

...

1 Commits

Author SHA1 Message Date
Jedd Morgan 7d9ef2d418 hotfix for previous PR mistakenly calling the get_project_workspace_id function with incorrect args (#210)
* workspace tracking + black

* works

* fixed issue
2024-11-05 17:56:34 +00:00
+1 -1
View File
@@ -388,7 +388,7 @@ class SendStreamObjects(bpy.types.Operator):
"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),
},
)