mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-22 05:06:37 +00:00
Don't ignore errors while downloading icons
This commit is contained in:
parent
83da757dfb
commit
ea600ab2b8
@ -42,7 +42,10 @@ fn get_icon (domain: &str) -> Vec<u8> {
|
|||||||
save_icon(&path, &icon);
|
save_icon(&path, &icon);
|
||||||
icon
|
icon
|
||||||
},
|
},
|
||||||
Err(_) => get_fallback_icon()
|
Err(e) => {
|
||||||
|
println!("Error downloading icon: {:?}", e);
|
||||||
|
get_fallback_icon()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -101,6 +104,9 @@ fn get_fallback_icon() -> Vec<u8> {
|
|||||||
save_icon(&path, &icon);
|
save_icon(&path, &icon);
|
||||||
icon
|
icon
|
||||||
},
|
},
|
||||||
Err(_) => vec![]
|
Err(e) => {
|
||||||
|
println!("Error downloading fallback icon: {:?}", e);
|
||||||
|
vec![]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user