fix: if previously not found, still look up icon

This fixes the case where an icon was previously looked up, not found, and now exists (i.e. when an application was installed)
This commit is contained in:
Ryan Brue 2024-04-27 17:14:01 -05:00 committed by Paul Delafosse
parent 05f9d99409
commit cd10e6fa61

View file

@ -227,10 +227,7 @@ impl<'a> LookupBuilder<'a> {
CacheEntry::Found(icon) => {
return Some(icon);
}
CacheEntry::NotFound => {
return None;
}
CacheEntry::Unknown => {}
_ => {}
};
}