Disable thumbnail_id from AlbumListQuery for now -- need to figure out how

to address this issue efficiently.
This commit is contained in:
casey langen 2017-02-09 00:05:05 -08:00
parent 4c0f48fb9f
commit 9d662a73bf

View File

@ -53,8 +53,11 @@ static const std::string COLUMNS =
"albums.id, "
"albums.name as album, "
"tracks.album_artist_id, "
"artists.name as album_artist, "
"tracks.thumbnail_id ";
"artists.name as album_artist ";
/* thumbnails may have different images even though they are part
of the same album. need to figure out how to work around this
efficiently. */
// "tracks.thumbnail_id ";
static const std::string TABLES =
"albums, tracks, artists ";