Version 0.0.7
Bugfix / feature release
Sigh... turns out the Qobuz API can return 2 different object types for the Playlist track_ids field:
- track_ids can be a list of numbers in JSON (most common)
e.g.:track_ids":[19512577, 36681027]
Example playlist: https://play.qobuz.com/playlist/5887115 - track_ids can also be a list of string:number combination in JSON
e.g.:track_ids":{"0":63353139,"1":53197054,"2":53207301}
Example playlist: https://play.qobuz.com/playlist/14888891
So now:
- Added a converter to parse both types to List<long> (and hope there aren't other variable fields)