Do not add extra args in toCodeArgs

It should only convert the args that are passed in.
This commit is contained in:
Asher
2024-05-06 16:53:35 -08:00
parent 7050002fb6
commit 125a972c81
3 changed files with 8 additions and 9 deletions

View File

@@ -54,6 +54,10 @@ export const ensureVSCodeLoaded = async (
try {
vscodeServer = await createVSServer(null, {
...(await toCodeArgs(req.args)),
"accept-server-license-terms": true,
// This seems to be used to make the connection token flags optional (when
// set to 1.63) but we have always included them.
compatibility: "1.64",
"without-connection-token": true,
})
} catch (error) {