1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-03 23:52:25 +02:00

* Set m_coverLoaded to true even when we couldn't find any image.

This commit is contained in:
Christian Muehlhaeuser 2012-07-01 05:43:29 +02:00
parent c1e7ef2ea3
commit 7946362dcf
2 changed files with 3 additions and 4 deletions

View File

@ -174,10 +174,10 @@ Album::infoSystemInfo( const Tomahawk::InfoSystem::InfoRequestData& requestData,
return;
}
m_coverLoaded = true;
if ( !output.isNull() && output.isValid() )
{
m_coverLoaded = true;
QVariantMap returnedData = output.value< QVariantMap >();
const QByteArray ba = returnedData["imgbytes"].toByteArray();
if ( ba.length() )

View File

@ -315,10 +315,9 @@ Artist::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData requestData, QVari
case Tomahawk::InfoSystem::InfoArtistImages:
{
m_coverLoaded = true;
if ( !output.isNull() && output.isValid() )
{
m_coverLoaded = true;
const QByteArray ba = returnedData["imgbytes"].toByteArray();
if ( ba.length() )
{