Commit ce5a17b4 authored by Warren Dukes's avatar Warren Dukes

fix bug int tag->metadataChunk where artist was being copied to title

git-svn-id: https://svn.musicpd.org/mpd/trunk@2593 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 41bf67ae
......@@ -75,7 +75,7 @@ void copyMpdTagToMetadataChunk(MpdTag * tag, MetadataChunk * chunk) {
chunk->title);
copyStringToChunk(
getNextItemFromMpdTag(tag, TAG_ITEM_ARTIST, NULL),
chunk->title);
chunk->artist);
copyStringToChunk(
getNextItemFromMpdTag(tag, TAG_ITEM_ALBUM, NULL),
chunk->album);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment