Skip to content

Commit

Permalink
fix: Revert accidental use of iso variable rather than "iso" string s…
Browse files Browse the repository at this point in the history
…lice
  • Loading branch information
lj3954 authored and flexiondotorg committed Aug 27, 2024
1 parent d70ed47 commit 90caff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linux/independent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ impl Distro for Gentoo {
async move {
let checksum = capture_page(&checksum_url).await.and_then(|cs| {
cs.lines()
.find(|l| l.contains(iso))
.find(|l| l.contains("iso"))
.and_then(|l| l.split_whitespace().next().map(ToString::to_string))
});

Expand Down

0 comments on commit 90caff2

Please sign in to comment.