Add song/genre sync

This commit is contained in:
Antonio Cappiello 2020-11-24 10:52:00 +01:00
parent b2c269a051
commit 76037e487b
47 changed files with 703 additions and 89 deletions

View file

@ -36,7 +36,7 @@ public class ArtistPageViewModel extends AndroidViewModel {
}
public LiveData<List<Song>> getArtistTopSongList() {
songList = songRepository.getArtistListLiveTopSong(artist.id);
songList = songRepository.getArtistListLiveTopSongSample(artist.id);
return songList;
}