fix
This commit is contained in:
parent
18526bad38
commit
8685c01969
1 changed files with 3 additions and 2 deletions
|
|
@ -118,7 +118,8 @@ class DownloadQueue:
|
||||||
except KeyError:
|
except KeyError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
options.update({'is_manifestless': 'post_live' == entry.get('live_status', None)})
|
is_manifestless = entry.get('is_manifestless', False)
|
||||||
|
options.update({'is_manifestless': is_manifestless})
|
||||||
|
|
||||||
dl = ItemDTO(
|
dl = ItemDTO(
|
||||||
id=entry.get('id'),
|
id=entry.get('id'),
|
||||||
|
|
@ -134,7 +135,7 @@ class DownloadQueue:
|
||||||
error=error,
|
error=error,
|
||||||
is_live=entry.get('is_live', None) or 'is_live' == entry.get('live_status', None) or live_in,
|
is_live=entry.get('is_live', None) or 'is_live' == entry.get('live_status', None) or live_in,
|
||||||
live_in=live_in,
|
live_in=live_in,
|
||||||
options=options,
|
options=options
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue