mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-05-11 06:59:14 +08:00
Respect subject lines in notifications
This commit is contained in:
parent
06343addef
commit
ca3e1d165d
1 changed files with 5 additions and 1 deletions
|
@ -109,8 +109,12 @@ export const prepareNotificationObject = (notification, i18n) => {
|
|||
} else if (i18nString) {
|
||||
notifObj.body = i18n.t('notifications.' + i18nString)
|
||||
} else if (isStatusNotification(notification.type)) {
|
||||
if (notification.status.summary) {
|
||||
notifObj.body = notification.status.summary
|
||||
} else {
|
||||
notifObj.body = notification.status.text
|
||||
}
|
||||
}
|
||||
|
||||
// Shows first attached non-nsfw image, if any. Should add configuration for this somehow...
|
||||
if (status && status.attachments && status.attachments.length > 0 && !status.nsfw &&
|
||||
|
|
Loading…
Reference in a new issue