Skip to content

Commit 607d017

Browse files
author
Veetaha
committed
vscode-postrefactor: unhandled promise rejections shall not pass 2
1 parent c2b0fff commit 607d017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export async function activate(context: vscode.ExtensionContext) {
3838
vscode.workspace.onDidChangeConfiguration(() => ensureProperExtensionVersion(config).catch(log.error));
3939

4040
// Don't await the user response here, otherwise we will block the lsp server bootstrap
41-
void ensureProperExtensionVersion(config);
41+
void ensureProperExtensionVersion(config).catch(log.error);
4242

4343
const serverPath = await ensureServerBinary(config);
4444

0 commit comments

Comments
 (0)