diff --git a/twitchdl/commands/download.py b/twitchdl/commands/download.py index 869455d..4569249 100644 --- a/twitchdl/commands/download.py +++ b/twitchdl/commands/download.py @@ -30,6 +30,10 @@ from twitchdl.twitch import Chapter, Clip, ClipAccessToken, Video def download(ids: List[str], args: DownloadOptions): + if not ids: + print_log("No IDs to downlad given") + return + for video_id in ids: download_one(video_id, args)