From c01d023411fb554e8cee5de913110cd17b74d389 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 22 Apr 2026 14:41:50 +0300 Subject: [PATCH] use sender handle in INPersonHandle for communication notifications Co-Authored-By: Claude Opus 4.6 (1M context) --- modules/BlueskyNSE/NotificationService.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/BlueskyNSE/NotificationService.swift b/modules/BlueskyNSE/NotificationService.swift index 5c87c8aaaf..b441f48a91 100644 --- a/modules/BlueskyNSE/NotificationService.swift +++ b/modules/BlueskyNSE/NotificationService.swift @@ -76,7 +76,8 @@ class NotificationService: UNNotificationServiceExtension { avatarImage = downloadAvatarImage(from: avatarUrlString) } - let senderHandle = INPersonHandle(value: nil, type: .unknown) + let senderHandleValue = userInfo["senderHandle"] as? String + let senderHandle = INPersonHandle(value: senderHandleValue, type: .unknown) let sender = INPerson( personHandle: senderHandle, nameComponents: nil,