diff options
Diffstat (limited to 'src/decoder/oggvorbis_plugin.c')
-rw-r--r-- | src/decoder/oggvorbis_plugin.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/decoder/oggvorbis_plugin.c b/src/decoder/oggvorbis_plugin.c index e7df60326..63722bdd8 100644 --- a/src/decoder/oggvorbis_plugin.c +++ b/src/decoder/oggvorbis_plugin.c @@ -168,7 +168,9 @@ vorbis_parse_comment(struct tag *tag, const char *comment) if (vorbis_copy_comment(tag, comment, VORBIS_COMMENT_TRACK_KEY, TAG_ITEM_TRACK) || vorbis_copy_comment(tag, comment, VORBIS_COMMENT_DISC_KEY, - TAG_ITEM_DISC)) + TAG_ITEM_DISC) || + vorbis_copy_comment(tag, comment, "album artist", + TAG_ITEM_ALBUM_ARTIST)) return; for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; ++i) |