diff --git a/mobile/lib/presentation/widgets/images/thumbnail.widget.dart b/mobile/lib/presentation/widgets/images/thumbnail.widget.dart index 67b2c8d96d..eeb70393c7 100644 --- a/mobile/lib/presentation/widgets/images/thumbnail.widget.dart +++ b/mobile/lib/presentation/widgets/images/thumbnail.widget.dart @@ -120,13 +120,13 @@ class _ThumbnailState extends State { void _loadImage() { _stopListeningToStream(); - if (widget.thumbhashMode != ThumbhashMode.disabled && widget.blurhash != null) { - _decodeThumbhash(); - } - if (widget.thumbhashMode != ThumbhashMode.only && widget.imageProvider != null) { _loadFromProvider(); } + + if (widget.thumbhashMode != ThumbhashMode.disabled && widget.blurhash != null) { + _decodeThumbhash(); + } } void _loadFromProvider() {