Set Vorbis.AlbumArtist to return "albumartist" attribute.

This commit is contained in:
David Howden 2016-04-20 21:51:51 +10:00
parent bccc91e40d
commit 4cd9615aa1

View File

@ -177,8 +177,9 @@ func (m *metadataVorbis) Album() string {
}
func (m *metadataVorbis) AlbumArtist() string {
// This field isn't included in the standard.
return ""
// This field isn't actually included in the standard, though
// it is commonly assigned to albumartist.
return m.c["albumartist"]
}
func (m *metadataVorbis) Composer() string {