chore: scrobbling

This commit is contained in:
Cory Dransfeldt 2024-03-29 15:07:58 -07:00
parent 0a3eba39b4
commit e3f0ae9783
No known key found for this signature in database

View file

@ -116,6 +116,12 @@ export default async (request) => {
await scrobbles.setJSON('now-playing', JSON.stringify(trackScrobbleData))
let scrobbleUpdate = scrobbleData
let windowUpdate = windowData;
console.log('### SCROBBLE')
console.log(scrobbleUpdate)
console.log('### SCROBBLE')
console.log('### WINDOW')
console.log(windowUpdate)
console.log('### WINDOW')
if (scrobbleUpdate['data']) scrobbleUpdate['data'].push(trackScrobbleData)
if (!scrobbleUpdate['data']) scrobbleUpdate = { data: [trackScrobbleData] }
if (windowData['data']) windowUpdate['data'].push(trackScrobbleData)