Hi, first of all thanks for the great app. I've noticed a bug as follows:
AniDroid is displaying an incorrect "X days watched" value in users' profile pages.
Here is a screenshot (not my user profile, but this is replicable for all profiles with sufficiently large watch time values) from in-app, showing "61.4 days":
Hi, first of all thanks for the great app. I've noticed a bug as follows:
AniDroid is displaying an incorrect "X days watched" value in users' profile pages.
Here is a screenshot (not my user profile, but this is replicable for all profiles with sufficiently large watch time values) from in-app, showing "61.4 days":
And here is the same data, accessed from a browser at https://anilist.co/user/1:
Here's a GraphQL query that reproduces this behaviour:
which outputs:
with
88410 / 60 / 24 ≈ 61.4 days (incorrect value from the deprecated API)
and91850 / 60 / 24 ≈ 63.8 days (correct value from the newer API)