This commit is contained in:
Evert Prants 2022-01-04 21:01:38 +02:00
parent 2114afd61a
commit ba8c7797b3
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ async function readSelection() {
await spotifyApi.addTracksToPlaylist(playlistId, uris);
}
console.log(operation === 'create' ? 'Created a playlist with' : 'Added', total.length, 'tracks');
console.log(operation === 'create' ? 'Created a playlist with' : 'Added', total, 'tracks');
}
readSelection().catch(console.error);