mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-22 02:15:12 +00:00
Allow 0
in --playlist-items
This commit is contained in:
parent
600e900300
commit
ff1c7fc9d3
2 changed files with 5 additions and 1 deletions
|
@ -1000,6 +1000,7 @@ def test_selection(params, expected_ids):
|
||||||
test_selection({'playlist_items': '2-4'}, [2, 3, 4])
|
test_selection({'playlist_items': '2-4'}, [2, 3, 4])
|
||||||
test_selection({'playlist_items': '2,4'}, [2, 4])
|
test_selection({'playlist_items': '2,4'}, [2, 4])
|
||||||
test_selection({'playlist_items': '10'}, [])
|
test_selection({'playlist_items': '10'}, [])
|
||||||
|
test_selection({'playlist_items': '0'}, [])
|
||||||
|
|
||||||
# Tests for https://github.com/ytdl-org/youtube-dl/issues/10591
|
# Tests for https://github.com/ytdl-org/youtube-dl/issues/10591
|
||||||
test_selection({'playlist_items': '2-4,3-4,3'}, [2, 3, 4])
|
test_selection({'playlist_items': '2-4,3-4,3'}, [2, 3, 4])
|
||||||
|
|
|
@ -1464,7 +1464,10 @@ def get_entry(i):
|
||||||
)(self, i)
|
)(self, i)
|
||||||
|
|
||||||
entries = []
|
entries = []
|
||||||
for i in playlistitems or itertools.count(playliststart):
|
items = playlistitems if playlistitems is not None else itertools.count(playliststart)
|
||||||
|
for i in items:
|
||||||
|
if i == 0:
|
||||||
|
continue
|
||||||
if playlistitems is None and playlistend is not None and playlistend < i:
|
if playlistitems is None and playlistend is not None and playlistend < i:
|
||||||
break
|
break
|
||||||
entry = None
|
entry = None
|
||||||
|
|
Loading…
Reference in a new issue