Commit 1c9e7488 authored by Rémi Duraffort's avatar Rémi Duraffort

qt4: fix encoding problem when passing the album art url from the core to Qt.

parent bcc5b3f6
...@@ -589,7 +589,7 @@ void InputManager::UpdateArt() ...@@ -589,7 +589,7 @@ void InputManager::UpdateArt()
if( hasInput() ) if( hasInput() )
{ {
char *psz_art = input_item_GetArtURL( input_GetItem( p_input ) ); char *psz_art = input_item_GetArtURL( input_GetItem( p_input ) );
url = psz_art; url = qfu( psz_art );
free( psz_art ); free( psz_art );
} }
url = url.replace( "file://", QString("" ) ); url = url.replace( "file://", QString("" ) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment