fix: better error handling
This commit is contained in:
parent
ba06d1ec0b
commit
b729c050f9
1 changed files with 10 additions and 11 deletions
|
@ -139,19 +139,18 @@ async fn get_wolves(config: &Config) -> Vec<AccountWolves> {
|
|||
}
|
||||
|
||||
// get wolves data
|
||||
let uri = &config.wolves_url;
|
||||
let mut res = surf::post(uri).header("X-AM-Identity", &config.wolves_key).await.unwrap();
|
||||
if let Ok(mut res) = surf::post(&config.wolves_url).header("X-AM-Identity", &config.wolves_key).await {
|
||||
if let Ok(WolvesResult {
|
||||
success,
|
||||
result,
|
||||
}) = res.body_json().await
|
||||
{
|
||||
if success != 1 {
|
||||
return vec![];
|
||||
}
|
||||
|
||||
if let Ok(WolvesResult {
|
||||
success,
|
||||
result,
|
||||
}) = res.body_json().await
|
||||
{
|
||||
if success != 1 {
|
||||
return vec![];
|
||||
return result.iter().map(AccountWolves::from).collect::<Vec<AccountWolves>>();
|
||||
}
|
||||
|
||||
return result.iter().map(AccountWolves::from).collect::<Vec<AccountWolves>>();
|
||||
}
|
||||
|
||||
vec![]
|
||||
|
|
Loading…
Reference in a new issue