summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2010-11-23 20:10:59 +0100
committerAleksander Morgado <aleksander@lanedo.com>2010-11-23 20:10:59 +0100
commit08404618c6c86598fe780b4c926c2b9510552311 (patch)
tree8b80d620c169779a263dbcb54937073b0f9bc0c2
parent6d54c904e2bba1b65d3c476f6b787db54b896e63 (diff)
downloadtracker-08404618c6c86598fe780b4c926c2b9510552311.tar.gz
Fixes NB#203540: Composer label not extracted in ID3v2.3 mp3 files
-rw-r--r--src/tracker-extract/tracker-extract-mp3.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tracker-extract/tracker-extract-mp3.c b/src/tracker-extract/tracker-extract-mp3.c
index 36348e67c..727acb2b2 100644
--- a/src/tracker-extract/tracker-extract-mp3.c
+++ b/src/tracker-extract/tracker-extract-mp3.c
@@ -1461,6 +1461,9 @@ get_id3v23_tags (id3v24frame frame,
case ID3V24_TOLY:
tag->toly = word;
break;
+ case ID3V24_TCOM:
+ tag->composer = word;
+ break;
case ID3V24_TIT1:
tag->title1 = word;
break;