Skip to content

Commit

Permalink
Filter LSP github releases that have no assets to properly download L…
Browse files Browse the repository at this point in the history
…SP servers (#7189)

Fixes #7183

Release Notes:

- Filter lsp github releases that have no assets ([7189](#7183))
  • Loading branch information
TENX-S authored Feb 1, 2024
1 parent 5e64d45 commit 3b88291
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/util/src/github.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ pub async fn latest_github_release(

releases
.into_iter()
.find(|release| release.pre_release == pre_release)
.find(|release| !release.assets.is_empty() && release.pre_release == pre_release)
.ok_or(anyhow!("Failed to find a release"))
}

0 comments on commit 3b88291

Please sign in to comment.