From ab2d8dfac4f72f9b789b524f3cdadbce3dc714cf Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 22 May 2026 19:18:21 +0300 Subject: [PATCH] disable convo avatar --- modules/BlueskyNSE/NotificationService.swift | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/BlueskyNSE/NotificationService.swift b/modules/BlueskyNSE/NotificationService.swift index 3f40999cfd..c5476e56e0 100644 --- a/modules/BlueskyNSE/NotificationService.swift +++ b/modules/BlueskyNSE/NotificationService.swift @@ -136,11 +136,12 @@ class NotificationService: UNNotificationServiceExtension { // For group convos, attach the composite group avatar (rendered by the // ogcard service) to the `speakableGroupName` parameter so iOS shows it // alongside the sender on the Communication Notification. - if userInfo["convoKind"] as? String == "group", - let convoAvatarUrlString = userInfo["convoAvatarUrl"] as? String, - let groupImage = downloadAvatarImage(from: convoAvatarUrlString) { - intent.setImage(groupImage, forParameterNamed: \.speakableGroupName) - } + // Disabled: the composite avatar renders poorly at notification size. + // if userInfo["convoKind"] as? String == "group", + // let convoAvatarUrlString = userInfo["convoAvatarUrl"] as? String, + // let groupImage = downloadAvatarImage(from: convoAvatarUrlString) { + // intent.setImage(groupImage, forParameterNamed: \.speakableGroupName) + // } let interaction = INInteraction(intent: intent, response: nil) interaction.direction = .incoming