summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9af9cd4)
raw | patch | inline | side by side (parent: 9af9cd4)
author | Jari Vetoniemi <mailroxas@gmail.com> | |
Thu, 11 Apr 2013 07:23:17 +0000 (09:23 +0200) | ||
committer | Max Kellermann <max@duempel.org> | |
Thu, 11 Apr 2013 07:32:26 +0000 (09:32 +0200) |
src/strfsong.c | patch | blob | history |
diff --git a/src/strfsong.c b/src/strfsong.c
index 48567675d964882e41df3b6b8357da684ff4f2da..00bcd87f3c6255bf2efab0fdfa8ba3bb2dff83f4 100644 (file)
--- a/src/strfsong.c
+++ b/src/strfsong.c
n--;
else if (strncmp("%file%", p, n) == 0)
temp = utf8_to_locale(mpd_song_get_uri(song));
- else if (strncmp("%artist%", p, n) == 0)
+ else if (strncmp("%artist%", p, n) == 0) {
temp = song_tag_locale(song, MPD_TAG_ARTIST);
- else if (strncmp("%albumartist", p, n) == 0)
+ if (temp == NULL) {
+ temp = song_tag_locale(song, MPD_TAG_PERFORMER);
+ if (temp == NULL)
+ temp = song_tag_locale(song, MPD_TAG_COMPOSER);
+ }
+ } else if (strncmp("%albumartist", p, n) == 0)
temp = song_tag_locale(song, MPD_TAG_ALBUM_ARTIST);
else if (strncmp("%composer%", p, n) == 0)
temp = song_tag_locale(song, MPD_TAG_COMPOSER);
else if (strncmp("%performer%", p, n) == 0)
temp = song_tag_locale(song, MPD_TAG_PERFORMER);
- else if (strncmp("%title%", p, n) == 0)
+ else if (strncmp("%title%", p, n) == 0) {
temp = song_tag_locale(song, MPD_TAG_TITLE);
- else if (strncmp("%album%", p, n) == 0)
+ if (temp == NULL)
+ temp = song_tag_locale(song, MPD_TAG_NAME);
+ } else if (strncmp("%album%", p, n) == 0)
temp = song_tag_locale(song, MPD_TAG_ALBUM);
else if (strncmp("%shortalbum%", p, n) == 0) {
temp = song_tag_locale(song, MPD_TAG_ALBUM);