fixed player duration not updating correctly

This commit is contained in:
booploops 2021-12-03 01:06:29 -08:00
parent cb924ccaa3
commit eb912c5c5f
3 changed files with 79 additions and 50 deletions

View file

@ -0,0 +1,11 @@
// Made For You
app.mk.api.recommendations({extend: "editorialArtwork,artistUrl"})
// Library with library length
/** This will return 100 tracks in an array, however
* the library total length is not returned but present in the network traffic response under
* meta.total. We need a way to get the full response from the network traffic.
*/
await app.mk.api.library.songs({limit: 100}).then((data)=>{
console.log(data)
})