no all() for both things

pull/9411/head
Mozi 6 months ago
parent 06bd726ab3
commit 3095d815c9

@ -190,7 +190,7 @@ class NiconicoLiveFD(FragmentFD):
total_duration = int(float(line.split(':')[1]))
if '#EXT-X-TARGETDURATION' in line:
fragment_duration = int(line.split(':')[1])
if not all({total_duration, fragment_duration}):
if not (total_duration and fragment_duration):
raise DownloadError('Unable to get required video info')
ctx = {

Loading…
Cancel
Save