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 c2b0fff commit 607d017Copy full SHA for 607d017
editors/code/src/main.ts
@@ -38,7 +38,7 @@ export async function activate(context: vscode.ExtensionContext) {
38
vscode.workspace.onDidChangeConfiguration(() => ensureProperExtensionVersion(config).catch(log.error));
39
40
// Don't await the user response here, otherwise we will block the lsp server bootstrap
41
- void ensureProperExtensionVersion(config);
+ void ensureProperExtensionVersion(config).catch(log.error);
42
43
const serverPath = await ensureServerBinary(config);
44
0 commit comments