diff options
| author | Veetaha <gerzoh1@gmail.com> | 2020-02-24 21:23:48 +0200 |
|---|---|---|
| committer | Veetaha <gerzoh1@gmail.com> | 2020-02-24 21:23:56 +0200 |
| commit | af57251c311220c2f93a75a6105e6472ffc8ebaa (patch) | |
| tree | 2f42d05c0fa34b6a084127d6f093c057df78be9e /editors/code/src | |
| parent | b4db089a6b79ae60dec9fcd0ba2d788a494c8d8f (diff) | |
| download | rust-af57251c311220c2f93a75a6105e6472ffc8ebaa.tar.gz rust-af57251c311220c2f93a75a6105e6472ffc8ebaa.zip | |
vscode: remove type assertion
Diffstat (limited to 'editors/code/src')
| -rw-r--r-- | editors/code/src/installation/server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/installation/server.ts b/editors/code/src/installation/server.ts index 9de257dd51b..cb5e568448a 100644 --- a/editors/code/src/installation/server.ts +++ b/editors/code/src/installation/server.ts @@ -63,7 +63,7 @@ export async function ensureServerBinary(source: null | BinarySource): Promise<n async function downloadServer(source: BinarySource.GithubRelease): Promise<boolean> { try { - const releaseInfo = (await fetchArtifactReleaseInfo(source.repo, source.file, source.version))!; + const releaseInfo = await fetchArtifactReleaseInfo(source.repo, source.file, source.version); await downloadArtifact(releaseInfo, source.file, source.dir, "language server"); await setServerVersion(source.storage, releaseInfo.releaseName); |
