Skip to content

Commit dbfa72a

Browse files
Fix image cache and hash correspondence
1 parent 040d413 commit dbfa72a

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)