sort songs by disc number on album details page
This commit is contained in:
parent
5c7be50dfa
commit
35f71fc6f3
6 changed files with 13 additions and 14 deletions
|
|
@ -85,7 +85,7 @@ public class SongLoader {
|
|||
final String primary = cursor.getString(9);
|
||||
final boolean favorite = Boolean.valueOf(cursor.getString(10));
|
||||
|
||||
return new Song(id, title, trackNumber, year, duration, albumId, albumName, artistId, artistName, primary, favorite);
|
||||
return new Song(id, title, trackNumber, 1, year, duration, albumId, albumName, artistId, artistName, primary, favorite);
|
||||
}
|
||||
|
||||
@Nullable
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue