From 7b5a9c10c6842b880990c80679a9d8f9cbeccbcf Mon Sep 17 00:00:00 2001 From: krille-chan Date: Thu, 15 May 2025 15:53:25 +0200 Subject: [PATCH] refactor: Reduce notification avatar size to 128 --- lib/utils/push_helper.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/utils/push_helper.dart b/lib/utils/push_helper.dart index 3035b50fa..33d0cce30 100644 --- a/lib/utils/push_helper.dart +++ b/lib/utils/push_helper.dart @@ -165,8 +165,8 @@ Future _tryPushHelper( .downloadMxcCached( avatar, thumbnailMethod: ThumbnailMethod.crop, - width: 256, - height: 256, + width: 128, + height: 128, animated: false, isThumbnail: true, rounded: true, @@ -184,8 +184,8 @@ Future _tryPushHelper( .downloadMxcCached( senderAvatar, thumbnailMethod: ThumbnailMethod.crop, - width: 256, - height: 256, + width: 128, + height: 128, animated: false, isThumbnail: true, rounded: true,