diff --git a/src/services/notification_utils/notification_utils.js b/src/services/notification_utils/notification_utils.js index a221b022..aa692004 100644 --- a/src/services/notification_utils/notification_utils.js +++ b/src/services/notification_utils/notification_utils.js @@ -109,7 +109,11 @@ export const prepareNotificationObject = (notification, i18n) => { } else if (i18nString) { notifObj.body = i18n.t('notifications.' + i18nString) } else if (isStatusNotification(notification.type)) { - notifObj.body = notification.status.text + 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...