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:
commit
815b9d2391
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue