From 9d662a73bffe748d5a7acbeba09d46640f5a6f1e Mon Sep 17 00:00:00 2001 From: casey langen Date: Thu, 9 Feb 2017 00:05:05 -0800 Subject: [PATCH] Disable thumbnail_id from AlbumListQuery for now -- need to figure out how to address this issue efficiently. --- src/core/library/query/local/AlbumListQuery.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/core/library/query/local/AlbumListQuery.cpp b/src/core/library/query/local/AlbumListQuery.cpp index c80842b4e..b5f5c2082 100644 --- a/src/core/library/query/local/AlbumListQuery.cpp +++ b/src/core/library/query/local/AlbumListQuery.cpp @@ -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 ";