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:
parent
c1e7ef2ea3
commit
7946362dcf
@ -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() )
|
||||
|
@ -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() )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user