diff options
| author | Veetaha <gerzoh1@gmail.com> | 2020-03-09 21:15:07 +0200 |
|---|---|---|
| committer | Veetaha <gerzoh1@gmail.com> | 2020-03-14 02:01:46 +0200 |
| commit | 607d017229ce398bd7fef43aa5f4ab35914e6f31 (patch) | |
| tree | a163f3a85c554c36bf7aded21d7a069ae70de754 /editors/code/src | |
| parent | c2b0fffe3d08d4819ca073c5821869b38784328d (diff) | |
| download | rust-607d017229ce398bd7fef43aa5f4ab35914e6f31.tar.gz rust-607d017229ce398bd7fef43aa5f4ab35914e6f31.zip | |
vscode-postrefactor: unhandled promise rejections shall not pass 2
Diffstat (limited to 'editors/code/src')
| -rw-r--r-- | editors/code/src/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index 4f46345d6b6..8a7c817276d 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts @@ -38,7 +38,7 @@ export async function activate(context: vscode.ExtensionContext) { vscode.workspace.onDidChangeConfiguration(() => ensureProperExtensionVersion(config).catch(log.error)); // Don't await the user response here, otherwise we will block the lsp server bootstrap - void ensureProperExtensionVersion(config); + void ensureProperExtensionVersion(config).catch(log.error); const serverPath = await ensureServerBinary(config); |
