this repo has no description

feat!: send clicks to all available clickees

ptr.pet 54c65197 a48b86a0

verified
Changed files
+1 -4
src
+1 -4
src/main.rs
···
let mut sent_click = false;
for url in clickee_urls.iter() {
match tinyget::get(*url).send_lazy() {
-
Ok(_) => {
-
sent_click = true;
-
break;
-
}
+
Ok(_) => sent_click = true,
Err(err) => println!("clickee ({url}) not online (error: {err}), using next one"),
}
}