I'm having an issue with marking a category as read when using the 'lastReadEntryId'. If for example this would be the data returned from the stream request:
[
{
"id": "1"
},
{
"id": "2"
},
{
"id": "3"
},
{
"id": "4"
},
{
"id": "5"
}
]
And I would mark as read and set lastReadEntryId to "3", articles 3, 4 and 5 are marked as read. But my app shows the articles from top to bottom, so articles 1, 2 and 3 are shown, then the user presses mark as read, and those should be marked as read. Is this the intended behaviour or am I doing something wrong? If so, could someone explain how to correctly mark those articles as read?