mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-10 06:14:16 +00:00
Clippy fix
This commit is contained in:
parent
0ff7fd939e
commit
2ffc3eac4d
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ fn get_icon(domain: &str) -> Vec<u8> {
|
|||
}
|
||||
Err(e) => {
|
||||
error!("Error downloading icon: {:?}", e);
|
||||
let miss_indicator = path.to_owned() + ".miss";
|
||||
let miss_indicator = path + ".miss";
|
||||
let empty_icon = Vec::new();
|
||||
save_icon(&miss_indicator, &empty_icon);
|
||||
FALLBACK_ICON.to_vec()
|
||||
|
|
Loading…
Reference in a new issue