forked from AkkomaGang/akkoma-fe
don't crash out if notification status is null
This commit is contained in:
parent
b009428814
commit
7ff17ab722
1 changed files with 4 additions and 2 deletions
|
@ -408,8 +408,10 @@ export const parseNotification = (data) => {
|
|||
if (masto) {
|
||||
output.type = mastoDict[data.type] || data.type
|
||||
output.seen = data.pleroma.is_seen
|
||||
if (data.status) {
|
||||
output.status = isStatusNotification(output.type) ? parseStatus(data.status) : null
|
||||
output.action = output.status // TODO: Refactor, this is unneeded
|
||||
}
|
||||
output.target = output.type !== 'move'
|
||||
? null
|
||||
: parseUser(data.target)
|
||||
|
|
Loading…
Reference in a new issue