]> git.sesse.net Git - vlc/commitdiff
qt4: fix encoding problem when passing the album art url from the core to Qt.
authorRémi Duraffort <ivoire@videolan.org>
Tue, 5 May 2009 12:54:27 +0000 (14:54 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Tue, 5 May 2009 12:57:18 +0000 (14:57 +0200)
modules/gui/qt4/input_manager.cpp

index a596ebd9bf6b58f70e9886d652194a52727fd93e..94b08b4b9510f0a5cb21b8ce3fb70838d0184033 100644 (file)
@@ -589,7 +589,7 @@ void InputManager::UpdateArt()
     if( hasInput() )
     {
         char *psz_art = input_item_GetArtURL( input_GetItem( p_input ) );
-        url = psz_art;
+        url = qfu( psz_art );
         free( psz_art );
     }
     url = url.replace( "file://", QString("" ) );