![]() Fix a problem where given two albums with the same year, like this: Album 1 [2018] - Song 1 - Song 2 Album 2 [2018] - Song 3 - Song 4 getSortedArtistSongs would incorrectly drop songs that came from any albums that came after Album 1, resulting in this: Song 1 [Album 1] Song 2 [Album 1] This was caused by a quirk in toSortedMap that would drop any map entries that corresponded to a previous sorted entry. We now get and sort the entries directly instead, which fixes the issue. |
||
---|---|---|
.. | ||
src | ||
build.gradle | ||
proguard-rules.pro |