Add album_artist to the generic md_map

The generic metadata field name is album_artist and not albumartist; that, or we
previously missed that field.
This commit is contained in:
Julien BLACHE 2010-04-10 10:49:18 +02:00
parent a5bdb9d59a
commit f36261be65

View File

@ -61,6 +61,7 @@ static const struct metadata_map md_map_generic[] =
{ "title", 0, mfi_offsetof(title) },
{ "artist", 0, mfi_offsetof(artist) },
{ "author", 0, mfi_offsetof(artist) },
{ "album_artist", 0, mfi_offsetof(album_artist) },
{ "albumartist", 0, mfi_offsetof(album_artist) },
{ "album", 0, mfi_offsetof(album) },
{ "genre", 0, mfi_offsetof(genre) },