chore: scrobbling
This commit is contained in:
parent
891a4ade02
commit
b895199821
1 changed files with 3 additions and 2 deletions
|
@ -100,8 +100,9 @@ export default async (request) => {
|
|||
}
|
||||
|
||||
// scrobble logic
|
||||
artistInfo = await artists.get(artistKey, { type: 'json'})
|
||||
console.log('artistInfo', artistInfo)
|
||||
artistInfo = await artists.get(artistKey)
|
||||
console.log(JSON.parse(artistInfo))
|
||||
console.log('artistInfo["mbid"]', JSON.parse(artistInfo)["mbid"])
|
||||
const artistUrl = `https://musicbrainz.org/artist/${artistInfo?.['mbid']}`
|
||||
const trackScrobbleData = {
|
||||
track,
|
||||
|
|
Reference in a new issue