aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-03-09 18:35:21 +0000
committerVeetaha <[email protected]>2020-03-14 00:01:46 +0000
commitc3ee8b10b89e6e0b1d80fd419291e5d73ff49a41 (patch)
treea8e056dcade69028d1b8333190fc21aafb0b3160 /editors
parentbc87d6de86a2d67febe7e4e21347af9c92dc7552 (diff)
vscode-postrefactor: eliminate my-mistake floating promise @matklad
Diffstat (limited to 'editors')
-rw-r--r--editors/code/src/installation/extension.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/installation/extension.ts b/editors/code/src/installation/extension.ts
index a0925acaa..d0782ad13 100644
--- a/editors/code/src/installation/extension.ts
+++ b/editors/code/src/installation/extension.ts
@@ -23,7 +23,7 @@ export async function ensureProperExtensionVersion(config: Config): Promise<neve
23 23
24 if (currentUpdChannel === UpdatesChannel.Stable) { 24 if (currentUpdChannel === UpdatesChannel.Stable) {
25 // Release date is present only when we are on nightly 25 // Release date is present only when we are on nightly
26 config.installedNightlyExtensionReleaseDate.set(null); 26 await config.installedNightlyExtensionReleaseDate.set(null);
27 } 27 }
28 28
29 if (desiredUpdChannel === UpdatesChannel.Stable) { 29 if (desiredUpdChannel === UpdatesChannel.Stable) {