mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-04 20:47:53 +00:00
Removed unwrap and added ?
This commit is contained in:
parent
da068a43c1
commit
4de16b2d17
@ -283,7 +283,7 @@ fn fix_href(href: &str, url: &str) -> String {
|
||||
}
|
||||
|
||||
fn download_icon(domain: &str) -> Result<Vec<u8>, Error> {
|
||||
let url = get_icon_url(&domain).unwrap();
|
||||
let url = get_icon_url(&domain)?;
|
||||
|
||||
info!("Downloading icon for {} via {}...",domain, url);
|
||||
let mut res = reqwest::get(&url)?;
|
||||
|
Loading…
Reference in New Issue
Block a user