Skip to content

Commit 79b3362

Browse files
committed
Fix source control menus in Projects Explorer
1 parent ce9aebb commit 79b3362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/studio.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export class StudioActions {
7979
this.name = getServerName(uriOrNode);
8080
this.api = new AtelierAPI(uriOrNode);
8181
} else if (uriOrNode) {
82-
this.api = new AtelierAPI(uriOrNode.workspaceFolder);
82+
this.api = new AtelierAPI(uriOrNode.workspaceFolderUri || uriOrNode.workspaceFolder);
8383
this.api.setNamespace(uriOrNode.namespace);
8484
this.name = uriOrNode instanceof PackageNode ? uriOrNode.fullName + ".PKG" : uriOrNode.fullName;
8585
} else {

0 commit comments

Comments
 (0)