forked from AkkomaGang/akkoma-fe
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
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ export const parseNotification = (data) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
output.created_at = new Date(data.created_at)
|
output.created_at = new Date(data.created_at)
|
||||||
output.id = data.id
|
output.id = parseInt(data.id)
|
||||||
|
|
||||||
return output
|
return output
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue