Merge branch 'kludge/null-status' into 'develop'

Check notification for null status

Closes #1137

See merge request pleroma/pleroma-fe!1569
This commit is contained in:
HJ 2024-12-26 23:33:16 +00:00
commit 0f20d0b0b0

View file

@ -442,7 +442,9 @@ export const parseNotification = (data) => {
if (masto) {
output.type = mastoDict[data.type] || data.type
output.seen = data.pleroma.is_seen
output.status = isStatusNotification(output.type) ? parseStatus(data.status) : null
// TODO: null check should be a temporary fix, I guess.
// Investigate why backend does this.
output.status = isStatusNotification(output.type) && data.status !== null ? parseStatus(data.status) : null
output.target = output.type !== 'move'
? null
: parseUser(data.target)