Added Artist song sort order in Artist details fragment

This commit is contained in:
Prathamesh More 2021-12-31 15:18:50 +05:30
parent cd933b56dc
commit 7a2d14e061
7 changed files with 139 additions and 16 deletions

View file

@ -134,7 +134,7 @@ class SortOrder {
companion object {
/* Artist song sort order A-Z */
private const val SONG_A_Z = MediaStore.Audio.Media.DEFAULT_SORT_ORDER
const val SONG_A_Z = MediaStore.Audio.Media.DEFAULT_SORT_ORDER
/* Artist song sort order Z-A */
const val SONG_Z_A = "$SONG_A_Z DESC"