From 05fb5a13fabc9716f80698c273203522bfdc25f5 Mon Sep 17 00:00:00 2001 From: 446564 Date: Thu, 5 Feb 2026 08:33:07 -0800 Subject: [PATCH] remove direct msg notification prefix The prefix "New message from " takes up a lot of space and was not localized anyway. --- lib/services/notification_service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/notification_service.dart b/lib/services/notification_service.dart index ea7f031..d835d07 100644 --- a/lib/services/notification_service.dart +++ b/lib/services/notification_service.dart @@ -118,7 +118,7 @@ class NotificationService { await _notifications.show( contactId?.hashCode ?? 0, - 'New message from $contactName', + contactName, message, notificationDetails, payload: 'message:$contactId',