]> git.sesse.net Git - vlc/commitdiff
input/meta.c: Attempt to find art in input_ArtFind even if there is no meta. Title...
authorPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 28 Aug 2007 23:08:22 +0000 (23:08 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 28 Aug 2007 23:08:22 +0000 (23:08 +0000)
src/input/meta.c

index f7f07cb64bd45f72d892578b40334e90b073918e..1ab12f241e55f1a0fe63decf5d5b5c43fa4062db 100644 (file)
@@ -120,9 +120,6 @@ int input_ArtFind( playlist_t *p_playlist, input_item_t *p_item )
     module_t *p_module;
     char *psz_title, *psz_artist, *psz_album;
 
-    if( !p_item->p_meta )
-        return VLC_EGENERIC;
-
     psz_artist = input_item_GetArtist( p_item );
     psz_album = input_item_GetAlbum( p_item );
     psz_title = input_item_GetTitle( p_item );