mirror of
https://github.com/alexta69/metube.git
synced 2025-04-03 20:27:36 +03:00
update playlist suppot with "url_transparent" entry type
This commit is contained in:
parent
a38185ca16
commit
07cc86c7d9
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ class DownloadQueue:
|
|||
if any(res['status'] == 'error' for res in results):
|
||||
return {'status': 'error', 'msg': ', '.join(res['msg'] for res in results if res['status'] == 'error' and 'msg' in res)}
|
||||
return {'status': 'ok'}
|
||||
elif etype == 'video' or etype == 'url' and 'id' in entry:
|
||||
elif etype == 'video' or etype.startswith('url') and 'id' in entry:
|
||||
if entry['id'] not in self.queue:
|
||||
dl = DownloadInfo(entry['id'], entry['title'], entry.get('webpage_url') or entry['url'])
|
||||
self.queue[entry['id']] = Download(self.config.DOWNLOAD_DIR, quality, dl)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue