Merge branch '519' into 'develop'
Fix conversationId comparison bug using integer format Closes #519 See merge request pleroma/pleroma-fe!781
This commit is contained in:
commit
081f9a926a
|
@ -309,7 +309,7 @@ export const parseNotification = (data) => {
|
|||
}
|
||||
|
||||
output.created_at = new Date(data.created_at)
|
||||
output.id = data.id
|
||||
output.id = parseInt(data.id)
|
||||
|
||||
return output
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue