Commit f6d71f73 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: fix str_format_meta (closes #4777)

parent 4480c48f
...@@ -905,12 +905,14 @@ char *str_format_meta( vlc_object_t *p_object, const char *string ) ...@@ -905,12 +905,14 @@ char *str_format_meta( vlc_object_t *p_object, const char *string )
if ( now_playing == NULL ) if ( now_playing == NULL )
{ {
char *temp = input_item_GetTitleFbName( p_item ); char *temp = input_item_GetTitleFbName( p_item );
char *psz_artist = input_item_GetArtist( p_item );
if( !EMPTY_STR( temp ) ) if( !EMPTY_STR( temp ) )
{ {
INSERT_STRING( temp ); INSERT_STRING( temp );
INSERT_STRING_NO_FREE( " - " ); if ( !EMPTY_STR( psz_artist ) )
INSERT_STRING_NO_FREE( " - " );
} }
INSERT_STRING( input_item_GetArtist( p_item ) ); INSERT_STRING( psz_artist );
} }
else else
INSERT_STRING( now_playing ); INSERT_STRING( now_playing );
......
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