Support IdSpace param in echonest artist requests properly.

This commit is contained in:
John Maguire 2012-05-29 16:48:28 -07:00
parent 38f1b71761
commit 1f64d4f709
1 changed files with 2 additions and 1 deletions

View File

@ -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()) );
}