Skip to content

Commit e1720aa

Browse files
authored
Merge pull request #396 from intersystems-community/#395-fix-namespace-case
uppercase namespace in API
2 parents 8d062fc + 21194a0 commit e1720aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class AtelierAPI {
4343
public readonly wsOrFile?: string | vscode.Uri;
4444

4545
public get ns(): string {
46-
return this.namespace || this._config.ns;
46+
return (this.namespace || this._config.ns).toUpperCase();
4747
}
4848

4949
public get config(): ConnectionSettings {

0 commit comments

Comments
 (0)