diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-06-09 10:50:03 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-06-09 10:50:03 +0200 |
commit | 62ae476eab4e600d6b7d662735910db0db2c4aa1 (patch) | |
tree | cb3f8e53587ee51cd0201765e6140dcc423ba4b0 /src/PixbufCache.vala | |
parent | e10377c3781fe84f10b3758b35bf403f91e6603a (diff) | |
parent | 361eb97e74a85fd3cbbb67a7a17281c49e2585f4 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'src/PixbufCache.vala')
-rw-r--r-- | src/PixbufCache.vala | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/PixbufCache.vala b/src/PixbufCache.vala index 6ff740e..76fdbd3 100644 --- a/src/PixbufCache.vala +++ b/src/PixbufCache.vala @@ -120,7 +120,11 @@ public class PixbufCache : Object { } // This call never blocks. Returns null if the pixbuf is not present. - public Gdk.Pixbuf? get_ready_pixbuf(Photo photo) { + public Gdk.Pixbuf? get_ready_pixbuf(Photo? photo) { + if (photo == null) { + return null; + } + return get_cached(photo); } |