chore: scrobbling
This commit is contained in:
parent
a7479f11f9
commit
f010fb01c6
1 changed files with 1 additions and 5 deletions
|
@ -34,9 +34,6 @@ export default async (request, context) => {
|
||||||
const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()
|
const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()
|
||||||
const artistInfo = await artists.get(artistKey, { type: 'json'}) // get the artist blob
|
const artistInfo = await artists.get(artistKey, { type: 'json'}) // get the artist blob
|
||||||
|
|
||||||
console.log('artist', artist)
|
|
||||||
console.log('track', track)
|
|
||||||
|
|
||||||
// if there is no artist blob, populate one
|
// if there is no artist blob, populate one
|
||||||
if (!artistInfo) {
|
if (!artistInfo) {
|
||||||
const trackRes = await fetch(
|
const trackRes = await fetch(
|
||||||
|
@ -60,8 +57,7 @@ export default async (request, context) => {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
return {}
|
return {}
|
||||||
});
|
});
|
||||||
console.log(trackRes)
|
const trackData = trackRes['track'];
|
||||||
const trackData = trackRes["recenttracks"]["track"][0];
|
|
||||||
let mbid = trackRes['track']['artist']['mbid']
|
let mbid = trackRes['track']['artist']['mbid']
|
||||||
const mbidMap = () => mbidRes[trackData['artist']['#text'].toLowerCase()] || "";
|
const mbidMap = () => mbidRes[trackData['artist']['#text'].toLowerCase()] || "";
|
||||||
|
|
||||||
|
|
Reference in a new issue