Merge branch 'fix-max-id-for-notifications' into 'develop'

Fix incorrect latest_id value in notifications_read request

See merge request pleroma/pleroma-fe!509
This commit is contained in:
HJ 2019-02-02 15:51:06 +00:00
commit 815b9d2391
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ export const parseNotification = (data) => {
}
output.created_at = new Date(data.created_at)
output.id = String(data.id)
output.id = data.id
return output
}