diff --git a/src/managers/Playlist.ts b/src/managers/Playlist.ts index 3a7abe6..357d420 100644 --- a/src/managers/Playlist.ts +++ b/src/managers/Playlist.ts @@ -159,7 +159,7 @@ export class PlaylistManager { const body = {} as any; if (snapshotID) body.snapshot_id = snapshotID; - if (uris) body.uris = uris.map(uri => ({ uri })); + if (uris) body.tracks = uris.map(uri => ({ uri })); const fetchedData = await this.client.fetch(`/playlists/${id}/tracks`, { method: "DELETE",