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 b903394 commit e405419Copy full SHA for e405419
src/utils/index.ts
@@ -349,7 +349,7 @@ export function redirectDotvscodeRoot(uri: vscode.Uri): vscode.Uri {
349
}
350
const dotMatch = uri.path.match(/^\/(\.[^/]*)\/(.*)$/);
351
if (dotMatch && dotMatch[1] === ".vscode") {
352
- const nsMatch = `&${uri.query}&`.match(/&ns=(.+)&/);
+ const nsMatch = `&${uri.query}&`.match(/&ns=([^&]+)&/);
353
if (!nsMatch) {
354
throw new Error("No 'ns' query parameter on uri");
355
0 commit comments