From ca7c5129b2eadabed826cd82b6c291c0cb68cda9 Mon Sep 17 00:00:00 2001 From: BlackDex Date: Wed, 6 Nov 2019 15:47:56 +0100 Subject: [PATCH] Fixed issue #709 creating icon_cache directory. When the icon_cache directory doesn't exists yet, and the first icon catched is a miss this .miss file was not able to be created since the directory was only created during a valid icon download. --- src/api/icons.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/api/icons.rs b/src/api/icons.rs index e8e4d1c..f403c69 100644 --- a/src/api/icons.rs +++ b/src/api/icons.rs @@ -104,6 +104,9 @@ fn get_icon(domain: &str) -> Vec { return FALLBACK_ICON.to_vec(); } + // Create icon_cache_folder before fetching + create_dir_all(&CONFIG.icon_cache_folder()).expect("Error creating icon cache"); + // Get the icon, or fallback in case of error match download_icon(&domain) { Ok(icon) => { @@ -395,8 +398,6 @@ fn download_icon(domain: &str) -> Result, Error> { } fn save_icon(path: &str, icon: &[u8]) { - create_dir_all(&CONFIG.icon_cache_folder()).expect("Error creating icon cache"); - if let Ok(mut f) = File::create(path) { f.write_all(icon).expect("Error writing icon file"); };