Skip to content

Commit

Permalink
Merge pull request #4363 from diogocp/master
Browse files Browse the repository at this point in the history
Send album artist to Last.fm.  Fixes #4354
  • Loading branch information
davidsansome committed May 20, 2014
2 parents 9f6899a + d7ec8b9 commit c86a2b5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/song.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,7 @@ void Song::ToLastFM(lastfm::Track* track, bool prefer_album_artist) const {
} else {
mtrack.setArtist(d->artist_);
}
mtrack.setAlbumArtist(d->albumartist_);
mtrack.setAlbum(d->album_);
mtrack.setTitle(d->title_);
mtrack.setDuration(length_nanosec() / kNsecPerSec);
Expand Down

0 comments on commit c86a2b5

Please sign in to comment.