diff options
author | Veetaha <[email protected]> | 2020-03-09 18:35:21 +0000 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-03-14 00:01:46 +0000 |
commit | c3ee8b10b89e6e0b1d80fd419291e5d73ff49a41 (patch) | |
tree | a8e056dcade69028d1b8333190fc21aafb0b3160 /editors | |
parent | bc87d6de86a2d67febe7e4e21347af9c92dc7552 (diff) |
vscode-postrefactor: eliminate my-mistake floating promise @matklad
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/src/installation/extension.ts | 2 |
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) { |