summaryrefslogtreecommitdiff
path: root/junklib.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2009-09-03 22:03:56 +0200
committerGravatar waker <wakeroid@gmail.com>2009-09-03 22:03:56 +0200
commitead6a984ab0fbafdd694681637c3fc1894003ce7 (patch)
tree1565d3dc3c253ab7b0460dc6848ca66b5d91dbe2 /junklib.c
parentc92e90a5159ac7a81b6f859b16779cea804707ef (diff)
added more tags to ape tag reader
Diffstat (limited to 'junklib.c')
-rw-r--r--junklib.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/junklib.c b/junklib.c
index 31b3934a..ee5ed2d9 100644
--- a/junklib.c
+++ b/junklib.c
@@ -575,6 +575,15 @@ junk_read_ape (playItem_t *it, FILE *fp) {
else if (!strcasecmp (key, "track")) {
pl_add_meta (it, "track", value);
}
+ else if (!strcasecmp (key, "year")) {
+ pl_add_meta (it, "year", value);
+ }
+ else if (!strcasecmp (key, "genre")) {
+ pl_add_meta (it, "genre", value);
+ }
+ else if (!strcasecmp (key, "comment")) {
+ pl_add_meta (it, "genre", value);
+ }
}
}