diff options
author | waker <wakeroid@gmail.com> | 2012-08-03 21:22:52 +0200 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2012-08-03 21:22:52 +0200 |
commit | eb320c8cd20380ae78bcd7be582dcf4dbdcc97b9 (patch) | |
tree | 4ea1b0c0464a0ee327171d5e234cc4c7026aaa57 | |
parent | 7c72658a7f2352d167a9611caeaaa54aac170361 (diff) |
added itunes tags support to title formatting
-rw-r--r-- | playlist.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -2947,6 +2947,10 @@ pl_format_title_int (const char *escape_chars, playItem_t *it, int idx, char *s, c = snprintf (t, e-t, "Icy | "); t += c; } + if (it->_flags & DDB_TAG_ITUNES) { + c = snprintf (t, e-t, "iTunes | "); + t += c; + } if (t != tags) { *(t - 3) = 0; } |