Add album size info to GS albums, now that we load GS albums in a synchronous way

This commit is contained in:
Arnaud Bienner 2012-02-28 23:27:37 +01:00
parent 0c1eca5ac1
commit a7332d1c83
1 changed files with 1 additions and 0 deletions

View File

@ -105,6 +105,7 @@ void GroovesharkSearchProvider::AlbumSearchResult(int id, const QList<SongList>&
foreach (const Song& s, a) {
result.album_songs_ << s;
}
result.album_size_ = result.album_songs_.size();
ret << result;
}