forked from AkkomaGang/akkoma-fe
#436 - notification html to text content
This commit is contained in:
parent
6fa014505c
commit
6ed26ce65d
1 changed files with 5 additions and 1 deletions
|
@ -313,7 +313,11 @@ const addNewNotifications = (state, { dispatch, notifications, older, visibleNot
|
||||||
if (i18nString) {
|
if (i18nString) {
|
||||||
notifObj.body = rootGetters.i18n.t('notifications.' + i18nString)
|
notifObj.body = rootGetters.i18n.t('notifications.' + i18nString)
|
||||||
} else {
|
} else {
|
||||||
notifObj.body = notification.status.text
|
// stripe html
|
||||||
|
const div = document.createElement('div')
|
||||||
|
div.innerHTML = notification.status.text
|
||||||
|
const text = div.textContent || div.innerText || ''
|
||||||
|
notifObj.body = text
|
||||||
}
|
}
|
||||||
|
|
||||||
// Shows first attached non-nsfw image, if any. Should add configuration for this somehow...
|
// Shows first attached non-nsfw image, if any. Should add configuration for this somehow...
|
||||||
|
|
Loading…
Reference in a new issue