Skip to content

How to scrobble only primary artist to Last.fm #259

Closed Answered by FoxxMD
PierreSenpai asked this question in Q&A
Discussion options

You must be logged in to vote

The commit you referenced for Last.fm is for when MS is scrobbling a track with multiple, well-formed artists already as proper list data IE

{
    "track": "My Track",
    "artists": [
        "Artist One",
        "Artist Two",
        "Artist Three"
    ],
    "album": "My Album"
}

In that case it will only send the first artist to Last.fm since last.fm doesn't support multiple artists (just one artist field in the scrobble request).

The data you are using still has all artists in the same field so MS doesn't know it's multiple artists IE

{
    "track": "My Track",
    "artists": [
        "Artist One / Artist Two / Artist Three"
    ],
    "album": "My Album"
}

It's not as simple as sa…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@PierreSenpai
Comment options

Answer selected by PierreSenpai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants