chore: debug
This commit is contained in:
parent
8a7679dadb
commit
783495d248
1 changed files with 4 additions and 3 deletions
|
@ -13,9 +13,7 @@ export default async (request, context) => {
|
||||||
const data = await request.formData()
|
const data = await request.formData()
|
||||||
const payload = data.get('payload')
|
const payload = data.get('payload')
|
||||||
console.log(payload)
|
console.log(payload)
|
||||||
const artist = payload['Metadata']['grandparentTitle']
|
console.log(payload['Metadata'])
|
||||||
const album = payload['Metadata']['parentTitle']
|
|
||||||
const track = payload['Metadata']['title']
|
|
||||||
const artists = getStore('artists')
|
const artists = getStore('artists')
|
||||||
|
|
||||||
|
|
||||||
|
@ -36,6 +34,9 @@ export default async (request, context) => {
|
||||||
|
|
||||||
|
|
||||||
if (payload?.event === 'media.scrobble') {
|
if (payload?.event === 'media.scrobble') {
|
||||||
|
const artist = payload['Metadata']['grandparentTitle']
|
||||||
|
const album = payload['Metadata']['parentTitle']
|
||||||
|
const track = payload['Metadata']['title']
|
||||||
const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()
|
const artistKey = sanitizeMediaString(artist).replace(/\s+/g, '-').toLowerCase()
|
||||||
const artistInfo = await artists.getJSON(artistKey)
|
const artistInfo = await artists.getJSON(artistKey)
|
||||||
if (!artistInfo) {
|
if (!artistInfo) {
|
||||||
|
|
Reference in a new issue