Bitbucket repositories pagination with sorting

Hello,

I’m trying to get all of the repositories that I have write access to, sorted by updated_on descending.

I’m using the following query: https://bitbucket.org/api/2.0/repositories?sort=-updated_on&role=contributor

This works and returns 10 values.

To get the next page, I’m using the next value, which in my case is https://bitbucket.org/api/2.0/repositories?sort=-updated_on&after=2021-01-14T10%3A39%3A26.765790%2B00%3A00&role=contributor.

Unfortunately, this query returns the same result as the previous query. Same values and same next.

However, if I’m not sorting by updated_on, then the first page returns 10 values, and the second page returns 2 values, so everything works fine. Everything also works fine when sorting by updated_on ascending.

So I think there is a bug that prevents getting to the second page of repositories when sorting by updated_on descending.

By the way, it doesn’t seem related, but I’m using oauth2 for authentication.

Any help would be appreciated, thank you.