mpd_get_title: call basename only when using path

Otherwise, traks like "Morning Bell/Amnesiac" get trimmed to "Amnesiac"
This commit is contained in:
Philippe Mongeau 2014-01-24 19:03:16 -05:00 committed by Andrew Karpow
parent dcc4823bc3
commit 6f8d5ef732
1 changed files with 4 additions and 3 deletions

View File

@ -266,8 +266,9 @@ char* mpd_get_title(struct mpd_song const *song)
char *str, *ptr;
str = (char *)mpd_song_get_tag(song, MPD_TAG_TITLE, 0);
if(str == NULL)
str = (char *)mpd_song_get_uri(song);
if(str == NULL){
str = basename((char *)mpd_song_get_uri(song));
}
if(str == NULL)
return NULL;
@ -277,7 +278,7 @@ char* mpd_get_title(struct mpd_song const *song)
if(*ptr=='"')
*ptr='\'';
return basename(str);
return str;
}
int mpd_put_state(char *buffer, int *current_song_id, unsigned *queue_version)