()
| 447 | } |
| 448 | |
| 449 | async function fetchLikedTracks() { |
| 450 | const res = await Spicetify.CosmosAsync.get("sp://core-collection/unstable/@/list/tracks/all?responseFormat=protobufJson"); |
| 451 | |
| 452 | return res.item.filter((track) => track.trackMetadata.playable).map((track) => track.trackMetadata.link); |
| 453 | } |
| 454 | |
| 455 | async function fetchLocalTracks() { |
| 456 | const res = await Spicetify.Platform.LocalFilesAPI.getTracks(); |