#436 - revert stripe html for notification

This commit is contained in:
dave 2019-04-03 11:17:23 -04:00
parent 6ed26ce65d
commit fe756fe30d

View file

@ -313,11 +313,7 @@ const addNewNotifications = (state, { dispatch, notifications, older, visibleNot
if (i18nString) {
notifObj.body = rootGetters.i18n.t('notifications.' + i18nString)
} else {
// stripe html
const div = document.createElement('div')
div.innerHTML = notification.status.text
const text = div.textContent || div.innerText || ''
notifObj.body = text
notifObj.body = notification.status.text
}
// Shows first attached non-nsfw image, if any. Should add configuration for this somehow...