diff --git a/mobile/lib/ui/viewer/file/zoomable_image.dart b/mobile/lib/ui/viewer/file/zoomable_image.dart index 3329e6955..1d9c9e223 100644 --- a/mobile/lib/ui/viewer/file/zoomable_image.dart +++ b/mobile/lib/ui/viewer/file/zoomable_image.dart @@ -129,7 +129,7 @@ class _ZoomableImageState extends State } void _loadNetworkImage() { - if (!_loadedSmallThumbnail && !_loadedFinalImage) { + if (!_loadedSmallThumbnail) { final cachedThumbnail = ThumbnailInMemoryLruCache.get(_photo); if (cachedThumbnail != null) { _imageProvider = Image.memory(cachedThumbnail).image;