From 1f64d4f709af7ce1967df099d95cf29a90d4c310 Mon Sep 17 00:00:00 2001 From: John Maguire Date: Tue, 29 May 2012 16:48:28 -0700 Subject: [PATCH] Support IdSpace param in echonest artist requests properly. --- 3rdparty/libechonest/Artist.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/3rdparty/libechonest/Artist.cpp b/3rdparty/libechonest/Artist.cpp index 56351dcb2..0b5510187 100644 --- a/3rdparty/libechonest/Artist.cpp +++ b/3rdparty/libechonest/Artist.cpp @@ -581,6 +581,8 @@ QByteArray Echonest::Artist::searchParamToString(Echonest::Artist::SearchParam p return "sort"; case Mood: return "mood"; + case IdSpace: + return "bucket"; default: return ""; } @@ -622,4 +624,3 @@ QDebug Echonest::operator<<(QDebug d, const Echonest::Artist& artist) { return d.maybeSpace() << QString::fromLatin1( "Artist(%1, %2)" ).arg( artist.name() ).arg( QString::fromLatin1(artist.id()) ); } -