This commit is contained in:
Cyberes 2023-01-21 15:55:29 -07:00
parent 049cc15c5d
commit 6199b8ccd6
No known key found for this signature in database
GPG Key ID: 194A1C358AACFC39
1 changed files with 2 additions and 1 deletions

View File

@ -184,7 +184,8 @@ if not args.daemon:
for i, target_url in tqdm(enumerate(url_list), total=len(url_list), position=0, desc='Inputs', disable=args.daemon):
logger.info('Fetching playlist...')
playlist = remove_duplicates_from_playlist(yt_dlp.playlist_contents(target_url))
playlist = yt_dlp.playlist_contents(target_url)
playlist['entries'] = remove_duplicates_from_playlist(playlist['entries'])
log_info_twice(f"Downloading item: '{playlist['title']}' {target_url}")