Commit eb36b1f7 authored by Rafaël Carré's avatar Rafaël Carré

Stores album art as a file:// url

parent a83b42c2
...@@ -356,7 +356,7 @@ static int __input_FindArtInCache( vlc_object_t *p_obj, input_item_t *p_item ) ...@@ -356,7 +356,7 @@ static int __input_FindArtInCache( vlc_object_t *p_obj, input_item_t *p_item )
{ {
if( !strncmp( psz_filename, "art", 3 ) ) if( !strncmp( psz_filename, "art", 3 ) )
{ {
snprintf( psz_filepath, MAX_PATH, "%s" DIR_SEP "%s", snprintf( psz_filepath, MAX_PATH, "file://%s" DIR_SEP "%s",
psz_dirpath, psz_filename ); psz_dirpath, psz_filename );
input_item_SetArtURL( p_item, psz_filepath ); input_item_SetArtURL( p_item, psz_filepath );
free( psz_filename ); free( psz_filename );
......
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