Skip to content

Commit 8f58d53

Browse files
Merge pull request #2031 from Flow-Launcher/VictoriousRaptor-patch-1
Fix image cache and hash correspondence
2 parents 040d413 + dbfa72a commit 8f58d53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Infrastructure/Image/ImageLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ public static async ValueTask<ImageSource> LoadAsync(string path, bool loadFullI
269269

270270
if (GuidToKey.TryGetValue(hash, out string key))
271271
{ // image already exists
272-
img = ImageCache[key, false] ?? img;
272+
img = ImageCache[key, loadFullImage] ?? img;
273273
}
274274
else
275275
{ // new guid

0 commit comments

Comments
 (0)