Skip to content

Commit

Permalink
Fix source control menus in Projects Explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-bsaviano committed Feb 14, 2024
1 parent ce9aebb commit 79b3362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/studio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class StudioActions {
this.name = getServerName(uriOrNode);
this.api = new AtelierAPI(uriOrNode);
} else if (uriOrNode) {
this.api = new AtelierAPI(uriOrNode.workspaceFolder);
this.api = new AtelierAPI(uriOrNode.workspaceFolderUri || uriOrNode.workspaceFolder);
this.api.setNamespace(uriOrNode.namespace);
this.name = uriOrNode instanceof PackageNode ? uriOrNode.fullName + ".PKG" : uriOrNode.fullName;
} else {
Expand Down

0 comments on commit 79b3362

Please sign in to comment.