mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #2031 from Flow-Launcher/VictoriousRaptor-patch-1
Fix image cache and hash correspondence
This commit is contained in:
commit
8f58d53b8a
1 changed files with 1 additions and 1 deletions
|
|
@ -269,7 +269,7 @@ namespace Flow.Launcher.Infrastructure.Image
|
||||||
|
|
||||||
if (GuidToKey.TryGetValue(hash, out string key))
|
if (GuidToKey.TryGetValue(hash, out string key))
|
||||||
{ // image already exists
|
{ // image already exists
|
||||||
img = ImageCache[key, false] ?? img;
|
img = ImageCache[key, loadFullImage] ?? img;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{ // new guid
|
{ // new guid
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue