1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-14 18:14:50 +02:00

fix Genres only showing up until the letter R

This commit is contained in:
Stefan Derkits
2014-10-27 20:36:09 +01:00
parent 99e07c1462
commit b343f11e9b

View File

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