Skip to content

Commit 3f67c0e

Browse files
committed
Format
1 parent 5eb1d84 commit 3f67c0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/routes/vscode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async function loadVSCode(req: express.Request): Promise<IVSCodeServerAPI> {
5959
// breaks importing `rotating-file-stream` for some reason. To work around
6060
// this, use `eval` for now, but we should consider switching to ESM.
6161
const modPath = path.join(vsRootPath, "out/server-main.js")
62-
const mod = await eval(`import("${modPath}")`) as VSCodeModule
62+
const mod = (await eval(`import("${modPath}")`)) as VSCodeModule
6363
const serverModule = await mod.loadCodeWithNls()
6464
return serverModule.createServer(null, {
6565
...(await toCodeArgs(req.args)),

0 commit comments

Comments
 (0)