We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce9aebb commit 79b3362Copy full SHA for 79b3362
src/commands/studio.ts
@@ -79,7 +79,7 @@ export class StudioActions {
79
this.name = getServerName(uriOrNode);
80
this.api = new AtelierAPI(uriOrNode);
81
} else if (uriOrNode) {
82
- this.api = new AtelierAPI(uriOrNode.workspaceFolder);
+ this.api = new AtelierAPI(uriOrNode.workspaceFolderUri || uriOrNode.workspaceFolder);
83
this.api.setNamespace(uriOrNode.namespace);
84
this.name = uriOrNode instanceof PackageNode ? uriOrNode.fullName + ".PKG" : uriOrNode.fullName;
85
} else {
0 commit comments