From 26d9029538f375240d9e438a207672b189c57722 Mon Sep 17 00:00:00 2001 From: 446564 Date: Tue, 20 Jan 2026 17:35:14 -0800 Subject: [PATCH] remove msg notify prefix when preview avail this removes the 'Received new message: ' prefix from notications when there is a message preview available --- 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 09039f0..cefeb2a 100644 --- a/lib/services/notification_service.dart +++ b/lib/services/notification_service.dart @@ -206,7 +206,7 @@ class NotificationService { final preview = _truncateMessage(message, 30); final body = preview.isEmpty ? 'Received new message' - : 'Received new message: $preview'; + : preview; await _notifications.show( channelIndex?.hashCode ?? DateTime.now().millisecondsSinceEpoch,