You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@ColorTwist isn't this last.fm API endpoint's problem (or design)? If my little R script is working correctly, then it isn't a bug - it shows that there's no match between responses album data.
I also checked this by calling the last.fm api directly with the parameters above. Tried with a number of different values for limit (itemsPerPage). Seems like it is working fine with values up to limit=99. But once you set limit to 100 you get different results. Then again you get the correct results setting limit to 101.. Most likely a bug in the last.fm API I think.
var pageResponse = await client.Artist.GetTopAlbumsAsync("Madonna", page: 1, itemsPerPage: 100);
return different result than:
var pageResponse = await client.Artist.GetTopAlbumsAsync("Madonna", page: 1, itemsPerPage: 50);
The text was updated successfully, but these errors were encountered: