fix: don't stop at first failed request

This commit is contained in:
əlemi 2023-06-15 16:24:01 +02:00
parent 3040556976
commit eaaf6f65e0
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -136,7 +136,10 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
}
for t in tasks {
t.await??;
match t.await? {
Ok(_) => todo!(),
Err(e) => eprintln!("{}", e),
}
}
},
PostWomanActions::Show { } => {