From dd29a823c326a1dfc9bf2bb47cfdade06a391f8a Mon Sep 17 00:00:00 2001 From: Asher Date: Wed, 17 Nov 2021 10:20:01 -0600 Subject: [PATCH] Fix /vscode route being shadowed by / (#4522) 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 0328ce22..5658e1df 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