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 386fa97 commit ff2eaf4Copy full SHA for ff2eaf4
src/api/index.ts
@@ -199,7 +199,7 @@ export class AtelierAPI {
199
active: this.externalServer || conn.active,
200
apiVersion: workspaceState.get(this.configName + ":apiVersion", DEFAULT_API_VERSION),
201
https: scheme === "https",
202
- ns: namespace || conn.ns,
+ ns: (namespace || conn.ns).toUpperCase(),
203
host,
204
port,
205
username,
@@ -216,7 +216,7 @@ export class AtelierAPI {
216
}
217
} else {
218
this._config = conn;
219
- this._config.ns = namespace || conn.ns;
+ this._config.ns = (namespace || conn.ns).toUpperCase();
220
this._config.serverName = "";
221
222
0 commit comments