From b343f11e9bcd6134ef9128a04c9924f4226334fc Mon Sep 17 00:00:00 2001 From: Stefan Derkits Date: Mon, 27 Oct 2014 20:36:09 +0100 Subject: [PATCH] fix Genres only showing up until the letter R --- src/libtomahawk/playlist/dynamic/echonest/EchonestGenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/playlist/dynamic/echonest/EchonestGenerator.cpp b/src/libtomahawk/playlist/dynamic/echonest/EchonestGenerator.cpp index 4761a9e36..27c520f25 100644 --- a/src/libtomahawk/playlist/dynamic/echonest/EchonestGenerator.cpp +++ b/src/libtomahawk/playlist/dynamic/echonest/EchonestGenerator.cpp @@ -715,7 +715,7 @@ EchonestGenerator::loadGenres() { s_genres_lock.lockForWrite(); tLog() << "Genres not in cache or too old, refetching genres ..."; - s_genresJob = Echonest::Genre::fetchList(); + s_genresJob = Echonest::Genre::fetchList( Echonest::GenreInformation(), 2000 ); connect( s_genresJob, SIGNAL( finished() ), this, SLOT( genresReceived() ) ); } }