fix: type

This commit is contained in:
Barış Soner Uşaklı
2026-03-12 22:04:48 -04:00
parent a3ee74478f
commit 59dd22ca2e

View File

@@ -549,7 +549,7 @@ Notifications.merge = async function (notifications) {
const type = typeFromLength(usernames);
const isMultiple = type === 'multiple';
const txArgs = [
`${mergeId}-${type}`,
`${mergeId}${type ? `-${type}` : ''}`,
...usernames.slice(0, usernames.length <= 3 ? 3 : 2),
...(isMultiple ? [usernames.length - 2] : []),
notifObj.roomIcon,
@@ -570,7 +570,7 @@ Notifications.merge = async function (notifications) {
const type = typeFromLength(usernames);
const isMultiple = type === 'multiple';
const txArgs = [
`${mergeId}-${type}`,
`${mergeId}${type ? `-${type}` : ''}`,
...usernames.slice(0, usernames.length <= 3 ? 3 : 2),
...(isMultiple ? [usernames.length - 2] : []),
utils.decodeHTMLEntities(notifObj.topicTitle || ''),