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
|
// scrobble logic
|
||||||
artistInfo = await artists.get(artistKey, { type: 'json'})
|
artistInfo = await artists.get(artistKey)
|
||||||
console.log('artistInfo', artistInfo)
|
console.log(JSON.parse(artistInfo))
|
||||||
|
console.log('artistInfo["mbid"]', JSON.parse(artistInfo)["mbid"])
|
||||||
const artistUrl = `https://musicbrainz.org/artist/${artistInfo?.['mbid']}`
|
const artistUrl = `https://musicbrainz.org/artist/${artistInfo?.['mbid']}`
|
||||||
const trackScrobbleData = {
|
const trackScrobbleData = {
|
||||||
track,
|
track,
|
||||||
|
|
Reference in a new issue