Skip to content

Commit

Permalink
bugfix: CMusicInfoTag::AppendAlbumArtist should append to m_albumArti…
Browse files Browse the repository at this point in the history
…st instead of m_artist.
  • Loading branch information
fetzerch committed May 22, 2012
1 parent 366a1f4 commit 158ae8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/music/tags/MusicInfoTag.cpp
Expand Up @@ -546,7 +546,7 @@ void CMusicInfoTag::AppendAlbumArtist(const CStdString &albumArtist)
return;
}

m_artist.push_back(albumArtist);
m_albumArtist.push_back(albumArtist);
}

void CMusicInfoTag::AppendGenre(const CStdString &genre)
Expand Down

0 comments on commit 158ae8c

Please sign in to comment.