0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-14 01:48:27 +02:00

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.
This commit is contained in:
BlackDex 2019-11-06 15:47:56 +01:00
parent 07e0fdbd2a
commit ca7c5129b2

View file

@ -104,6 +104,9 @@ fn get_icon(domain: &str) -> Vec<u8> {
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<Vec<u8>, 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");
};