1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

* Only try loading covers once.

This commit is contained in:
Christian Muehlhaeuser
2012-06-12 08:58:40 +02:00
parent d0a8f2d1b9
commit b3ebcb59c0
2 changed files with 4 additions and 2 deletions

View File

@@ -181,9 +181,10 @@ Album::infoSystemInfo( const Tomahawk::InfoSystem::InfoRequestData& requestData,
if ( ba.length() )
{
m_coverBuffer = ba;
m_coverLoaded = true;
emit coverChanged();
}
m_coverLoaded = true;
}
}

View File

@@ -321,9 +321,10 @@ Artist::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData requestData, QVari
if ( ba.length() )
{
m_coverBuffer = ba;
m_coverLoaded = true;
emit coverChanged();
}
m_coverLoaded = true;
}
break;