(uri)
| 298 | } |
| 299 | |
| 300 | async function fetchPlaylistTracks(uri) { |
| 301 | const res = await Spicetify.Platform.PlaylistAPI.getContents(`spotify:playlist:${uri}`, { |
| 302 | limit: 9999999, |
| 303 | }); |
| 304 | return res.items.filter((track) => track.isPlayable).map((track) => track.uri); |
| 305 | } |
| 306 | |
| 307 | function searchFolder(rows, uri) { |
| 308 | for (const r of rows) { |
no outgoing calls
no test coverage detected