diff --git a/lib/utils/push_helper.dart b/lib/utils/push_helper.dart index 198c5c442..516c4e5da 100644 --- a/lib/utils/push_helper.dart +++ b/lib/utils/push_helper.dart @@ -171,8 +171,9 @@ Future _tryPushHelper( final avatar = event.room.avatar ?.getThumbnail( client, - width: 128, - height: 128, + width: 256, + height: 256, + method: ThumbnailMethod.scale, ) .toString(); final senderAvatar = event.room.isDirectChat @@ -180,8 +181,9 @@ Future _tryPushHelper( : event.senderFromMemoryOrFallback.avatarUrl ?.getThumbnail( client, - width: 128, - height: 128, + width: 256, + height: 256, + method: ThumbnailMethod.scale, ) .toString();