1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-19 23:39:42 +01:00

* Potential fix for TWK-618: ArtUrl not properly encoded.

This commit is contained in:
Christian Muehlhaeuser 2011-12-04 07:48:27 +01:00
parent 9d4974b174
commit 2bfa77c1ff

View File

@ -258,7 +258,7 @@ MprisPlugin::metadata() const
// Only return art if tempfile exists, and if its name contains the same "artist_album_tomahawk_cover.png"
if( m_coverTempFile && m_coverTempFile->exists() &&
m_coverTempFile->fileName().contains( track->artist()->name() + "_" + track->album()->name() + "_tomahawk_cover.png" ) )
metadataMap.insert( "mpris:artUrl", QFileInfo( *m_coverTempFile ).absoluteFilePath() );
metadataMap.insert( "mpris:artUrl", QUrl::fromLocalFile( QFileInfo( *m_coverTempFile ).absoluteFilePath() ).toString() );
else
{
// Need to fetch the album cover
@ -275,7 +275,6 @@ MprisPlugin::metadata() const
Tomahawk::InfoSystem::InfoSystem::instance()->getInfo( requestData );
}
}
return metadataMap;