fix: don't stop at first failed request
This commit is contained in:
parent
3040556976
commit
eaaf6f65e0
1 changed files with 4 additions and 1 deletions
|
@ -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 { } => {
|
||||
|
|
Loading…
Reference in a new issue