mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
id3demux: fix parsing of ID3v2.4 genre frames with multiple genres
We'd only extract the first genre (multiple times) instead of all genres. https://bugzilla.gnome.org/show_bug.cgi?id=638535
This commit is contained in:
parent
79a8e0ee42
commit
5b79a3d2f8
1 changed files with 1 additions and 1 deletions
|
@ -875,7 +875,7 @@ id3v2_genre_fields_to_taglist (ID3TagsWorking * work, const gchar * tag_name,
|
|||
for (i = 0; i < tag_fields->len; i++) {
|
||||
gint len;
|
||||
|
||||
tag_str = g_array_index (tag_fields, gchar *, 0);
|
||||
tag_str = g_array_index (tag_fields, gchar *, i);
|
||||
if (tag_str == NULL)
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Reference in a new issue