From 2fc889a5f9ffe69dab6017129b94050b7dd46921 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sat, 8 Feb 2025 13:42:51 -0500 Subject: [PATCH] Tweak push notification grouping Closes #559 --- NotificationExtension/NotificationService.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/NotificationExtension/NotificationService.swift b/NotificationExtension/NotificationService.swift index 6270a33583..83a5980821 100644 --- a/NotificationExtension/NotificationService.swift +++ b/NotificationExtension/NotificationService.swift @@ -175,6 +175,7 @@ class NotificationService: UNNotificationServiceExtension { } else { conversationIdentifier = nil } + content.threadIdentifier = conversationIdentifier ?? "" let account: Account? switch notification.kind { @@ -212,7 +213,7 @@ class NotificationService: UNNotificationServiceExtension { outgoingMessageType: .outgoingMessageText, content: notificationContent, speakableGroupName: nil, - conversationIdentifier: conversationIdentifier, + conversationIdentifier: nil, serviceName: nil, sender: sender, attachments: nil