Fixed issues with playlist downloading

This commit is contained in:
logykk
2021-10-29 21:09:20 +13:00
parent c11998351b
commit 31baf3feae
2 changed files with 4 additions and 1 deletions

View File

@@ -76,7 +76,7 @@ def download_from_user_playlist():
playlist_choices = input('ID(s): ').split('-')
if len(playlist_choices) == 1:
download_playlist(playlists, playlist_choices[0])
download_playlist(playlists[0])
else:
start = int(playlist_choices[0])
end = int(playlist_choices[1]) + 1