Playlists pinned by saving the server information

This commit is contained in:
CappielloAntonio 2021-12-05 16:55:47 +01:00
parent a1885e96cd
commit 08c1b03d84
8 changed files with 29 additions and 10 deletions

View file

@ -154,8 +154,8 @@ public class PlaylistRepository {
});
}
public LiveData<List<Playlist>> getPinnedPlaylists() {
return playlistDao.getAll();
public LiveData<List<Playlist>> getPinnedPlaylists(String serverId) {
return playlistDao.getAll(serverId);
}
public void insert(Playlist playlist) {