aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/decoder/mp4_plugin.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/decoder/mp4_plugin.c b/src/decoder/mp4_plugin.c
index 67d85ba0b..dd57a8e13 100644
--- a/src/decoder/mp4_plugin.c
+++ b/src/decoder/mp4_plugin.c
@@ -387,6 +387,8 @@ mp4_load_tag(const char *file)
tag_add_item(ret, TAG_ITEM_GENRE, value);
} else if (0 == strcasecmp("date", item)) {
tag_add_item(ret, TAG_ITEM_DATE, value);
+ } else if (0 == strcasecmp("writer", item)) {
+ tag_add_item(ret, TAG_ITEM_COMPOSER, value);
}
free(item);