From 2da82a1e9e4c25f9b10a74bc18abae7d04025011 Mon Sep 17 00:00:00 2001 From: Vivek Kumar Date: Thu, 21 Apr 2022 17:00:28 +0530 Subject: [PATCH] edited notification to remove the prefix new message from --- src/libs/Notification/LocalNotification/BrowserNotifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/Notification/LocalNotification/BrowserNotifications.js b/src/libs/Notification/LocalNotification/BrowserNotifications.js index e1d993475ed2..0c41c884d5bb 100644 --- a/src/libs/Notification/LocalNotification/BrowserNotifications.js +++ b/src/libs/Notification/LocalNotification/BrowserNotifications.js @@ -112,7 +112,7 @@ export default { const plainTextMessage = Str.htmlDecode((_.find(message, f => f.type === 'COMMENT') || {}).text); push({ - title: `New message from ${plainTextPerson}`, + title: plainTextPerson, body: plainTextMessage, delay: 0, onClick,