1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-11-18 16:26:23 +00:00

Trigger CI tests?

This commit is contained in:
dirkf 2022-11-10 16:20:51 +00:00 committed by GitHub
parent 3b3f2dd6e1
commit a58d7f2826
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -111,9 +111,9 @@ class VeejoyIE(InfoExtractor):
if not f_url: if not f_url:
continue continue
ext = determine_ext(f_url) ext = determine_ext(f_url)
transcodingFormat = try_get(asset_format, lambda x: x['transcodingFormat'], dict) or {} transcodingFormat = try_get(asset_format, lambda x: x['transcodingFormat'], dict)
if transcodingFormat == {}: if not transcodingFormat:
continue continue
label = strip_or_none(transcodingFormat.get('label') or '').split('-') label = strip_or_none(transcodingFormat.get('label') or '').split('-')