From 644f705be14f9bd3f62da9eb0be474597ede2e72 Mon Sep 17 00:00:00 2001 From: Luis Nachtigall <31982496+LeLunZ@users.noreply.github.com> Date: Fri, 20 Mar 2026 17:22:59 +0100 Subject: [PATCH] fix(mobile): correct maximumSizeBytes setter to use maximumSizeBytes property (#27098) fix: correct maximumSizeBytes setter to use maximumSizeBytes property --- mobile/lib/utils/cache/custom_image_cache.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/utils/cache/custom_image_cache.dart b/mobile/lib/utils/cache/custom_image_cache.dart index 99ce0db57c..2c09030ffa 100644 --- a/mobile/lib/utils/cache/custom_image_cache.dart +++ b/mobile/lib/utils/cache/custom_image_cache.dart @@ -20,7 +20,7 @@ final class CustomImageCache implements ImageCache { set maximumSize(int value) => _small.maximumSize = value; @override - set maximumSizeBytes(int value) => _small.maximumSize = value; + set maximumSizeBytes(int value) => _small.maximumSizeBytes = value; @override void clear() {