Set track number in downloaded tracks

This commit is contained in:
CappielloAntonio 2021-09-02 14:18:10 +02:00
parent 984003ccd4
commit 60adc11848
3 changed files with 18 additions and 3 deletions

View file

@ -89,6 +89,7 @@ public class Song implements Parcelable {
this.albumName = download.getAlbumName();
this.artistId = download.getArtistId();
this.artistName = download.getArtistName();
this.trackNumber = download.getTrackNumber();
this.primary = download.getPrimary();
this.duration = download.getDuration();
}