From 1901a6cf66384cf72afbfbb82dd4379ebecfec6e Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Tue, 8 Apr 2025 05:54:56 +1000 Subject: [PATCH] Do not show emojis when displaying name only Co-authored-by: Andrew Gaul --- ts/services/notifications.ts | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ts/services/notifications.ts b/ts/services/notifications.ts index caae1e6d0a..436f727597 100644 --- a/ts/services/notifications.ts +++ b/ts/services/notifications.ts @@ -392,14 +392,7 @@ class NotificationService extends EventEmitter { ) { notificationMessage = i18n('icu:newMessage'); } else if (userSetting === NotificationSetting.NameOnly) { - if (reaction) { - notificationMessage = i18n('icu:notificationReaction', { - sender: senderTitle, - emoji: reaction.emoji, - }); - } else { - notificationMessage = i18n('icu:newMessage'); - } + notificationMessage = i18n('icu:newMessage'); } else if (storyId) { notificationMessage = message; } else if (reaction) {