Removed unwrap and added ?

This commit is contained in:
BlackDex 2019-01-27 16:25:02 +01:00
parent da068a43c1
commit 4de16b2d17
1 changed files with 1 additions and 1 deletions

View File

@ -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)?;