From 202bba2683c7e9151291f5c59e28f7d1a5d89a88 Mon Sep 17 00:00:00 2001 From: Asher Date: Wed, 17 Nov 2021 00:41:26 +0000 Subject: [PATCH] Fix /vscode route being shadowed by / This causes / to always take precedence and on the VS Code side we would see /vscode instead of / so the matching does not work correctly. --- src/node/routes/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/routes/index.ts b/src/node/routes/index.ts index 0328ce22929a..5658e1df04af 100644 --- a/src/node/routes/index.ts +++ b/src/node/routes/index.ts @@ -141,7 +141,7 @@ export const register = async (app: App, args: DefaultedArgs): Promise