From 4ee4ba9a011bd1134f85c4caf97834763769a223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Wed, 11 Mar 2026 12:18:27 -0400 Subject: [PATCH] cleaner --- src/notifications.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/notifications.js b/src/notifications.js index 83e3e163b3..903380960a 100644 --- a/src/notifications.js +++ b/src/notifications.js @@ -562,14 +562,10 @@ Notifications.merge = async function (notifications) { case 'notifications:user-flagged-user': case 'notifications:activitypub.announce': { const usernames = _.uniq(set.map(notifObj => notifObj && notifObj.user && notifObj.user.displayname)); - const numUsers = usernames.length; - - const title = utils.decodeHTMLEntities(notifObj.topicTitle || ''); - const txKey = `${mergeId}-${typeFromLength(usernames)}`; - const displayNames = usernames.slice(0, numUsers <= 3 ? 3 : 2).join(', '); + const displayNames = usernames.slice(0, usernames.length <= 3 ? 3 : 2).join(', '); + const title = utils.decodeHTMLEntities(notifObj.topicTitle || ''); notifObj.bodyShort = translator.compile(txKey, displayNames, title || ''); - notifObj.path = set[set.length - 1].path; break; }