mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-06 14:16:32 +02:00
Fix artist bios not loading after changes to infosystem types
This commit is contained in:
@@ -199,7 +199,8 @@ ArtistInfoWidget::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData requestD
|
|||||||
|
|
||||||
if ( output.canConvert< QVariantMap >() )
|
if ( output.canConvert< QVariantMap >() )
|
||||||
{
|
{
|
||||||
if ( trackInfo["artist"] != m_artist->name() )
|
const QString artist = requestData.input.toString();
|
||||||
|
if ( trackInfo["artist"] != m_artist->name() && artist != m_artist->name() )
|
||||||
{
|
{
|
||||||
qDebug() << "Returned info was for:" << trackInfo["artist"] << "- was looking for:" << m_artist->name();
|
qDebug() << "Returned info was for:" << trackInfo["artist"] << "- was looking for:" << m_artist->name();
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user