chore: scrobbling
This commit is contained in:
parent
0a3eba39b4
commit
e3f0ae9783
1 changed files with 6 additions and 0 deletions
|
@ -116,6 +116,12 @@ export default async (request) => {
|
||||||
await scrobbles.setJSON('now-playing', JSON.stringify(trackScrobbleData))
|
await scrobbles.setJSON('now-playing', JSON.stringify(trackScrobbleData))
|
||||||
let scrobbleUpdate = scrobbleData
|
let scrobbleUpdate = scrobbleData
|
||||||
let windowUpdate = windowData;
|
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'].push(trackScrobbleData)
|
||||||
if (!scrobbleUpdate['data']) scrobbleUpdate = { data: [trackScrobbleData] }
|
if (!scrobbleUpdate['data']) scrobbleUpdate = { data: [trackScrobbleData] }
|
||||||
if (windowData['data']) windowUpdate['data'].push(trackScrobbleData)
|
if (windowData['data']) windowUpdate['data'].push(trackScrobbleData)
|
||||||
|
|
Reference in a new issue