mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-20 15:59:42 +01:00
Fix regression in infosystem by working around it. Can't reuse requestData objects without changing their ids.
This commit is contained in:
parent
4ad6b2bebf
commit
5eef57f3b8
@ -189,12 +189,15 @@ ArtistInfoWidget::load( const artist_ptr& artist )
|
||||
requestData.input = QVariant::fromValue< Tomahawk::InfoSystem::InfoStringHash >( artistInfo );
|
||||
|
||||
requestData.type = Tomahawk::InfoSystem::InfoArtistImages;
|
||||
requestData.requestId = TomahawkUtils::infosystemRequestId();
|
||||
Tomahawk::InfoSystem::InfoSystem::instance()->getInfo( requestData );
|
||||
|
||||
requestData.type = Tomahawk::InfoSystem::InfoArtistSimilars;
|
||||
requestData.requestId = TomahawkUtils::infosystemRequestId();
|
||||
Tomahawk::InfoSystem::InfoSystem::instance()->getInfo( requestData );
|
||||
|
||||
requestData.type = Tomahawk::InfoSystem::InfoArtistSongs;
|
||||
requestData.requestId = TomahawkUtils::infosystemRequestId();
|
||||
Tomahawk::InfoSystem::InfoSystem::instance()->getInfo( requestData );
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user