use correct projection for playlist queries
This commit is contained in:
parent
a2e87d3670
commit
6f15dd5989
@ -68,9 +68,17 @@ public class Song implements Comparable<Song> {
|
|||||||
MediaLibrary.PlaylistSongColumns.SONG_ID,
|
MediaLibrary.PlaylistSongColumns.SONG_ID,
|
||||||
};
|
};
|
||||||
|
|
||||||
public static final String[] FILLED_PLAYLIST_PROJECTION =
|
public static final String[] FILLED_PLAYLIST_PROJECTION = {
|
||||||
FILLED_PROJECTION; // Same, as playlists are just a view of the view
|
MediaLibrary.PlaylistSongColumns.SONG_ID,
|
||||||
|
MediaLibrary.SongColumns.PATH,
|
||||||
|
MediaLibrary.SongColumns.TITLE,
|
||||||
|
MediaLibrary.AlbumColumns.ALBUM,
|
||||||
|
MediaLibrary.ContributorColumns.ARTIST,
|
||||||
|
MediaLibrary.SongColumns.ALBUM_ID,
|
||||||
|
MediaLibrary.ContributorColumns.ARTIST_ID,
|
||||||
|
MediaLibrary.SongColumns.DURATION,
|
||||||
|
MediaLibrary.SongColumns.SONG_NUMBER,
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The cache instance.
|
* The cache instance.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user