vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit ea600ab2b84a4881daba70655d8c7aead83eb8d7
parent 83da757dfb3f4bdfb458b5cf61b5d2d630f87ef2
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Sun,  1 Jul 2018 15:27:42 +0200

Don't ignore errors while downloading icons

Diffstat:
Msrc/api/icons.rs | 10++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/api/icons.rs b/src/api/icons.rs @@ -42,7 +42,10 @@ fn get_icon (domain: &str) -> Vec<u8> { save_icon(&path, &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); icon }, - Err(_) => vec![] + Err(e) => { + println!("Error downloading fallback icon: {:?}", e); + vec![] + } } }