fu: chore clippy

This commit is contained in:
epiphany
2025-11-11 14:58:55 +00:00
parent 4750dac59f
commit b20b997cfc

View File

@@ -855,12 +855,9 @@ impl Fu {
continue;
}
match params.get("event").unwrap().get::<String>().unwrap().as_str() {
"seeders_found" => {
print_seeders(info);
break
}
_ => {}
if params.get("event").unwrap().get::<String>().unwrap().as_str() == "seeders_found" {
print_seeders(info);
break
}
}