mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-23 16:01:43 +01:00
Don't sort GS popular songs by name as they are already sorted by popularity
This commit is contained in:
parent
5fc0e1e354
commit
a57e2be7ec
@ -788,7 +788,6 @@ void GroovesharkService::PopularSongsMonthRetrieved(QNetworkReply* reply) {
|
||||
reply->deleteLater();
|
||||
QVariantMap result = ExtractResult(reply);
|
||||
SongList songs = ExtractSongs(result);
|
||||
Song::SortSongsListAlphabetically(&songs);
|
||||
|
||||
app_->task_manager()->IncreaseTaskProgress(task_popular_id_, 50, 100);
|
||||
if (app_->task_manager()->GetTaskProgress(task_popular_id_) >= 100) {
|
||||
@ -821,7 +820,6 @@ void GroovesharkService::PopularSongsTodayRetrieved(QNetworkReply* reply) {
|
||||
reply->deleteLater();
|
||||
QVariantMap result = ExtractResult(reply);
|
||||
SongList songs = ExtractSongs(result);
|
||||
Song::SortSongsListAlphabetically(&songs);
|
||||
|
||||
app_->task_manager()->IncreaseTaskProgress(task_popular_id_, 50, 100);
|
||||
if (app_->task_manager()->GetTaskProgress(task_popular_id_) >= 100) {
|
||||
|
Loading…
Reference in New Issue
Block a user