mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Merge pull request #1161 from meyerd/master
Fix regex error when only subtitled video is available on arte.
This commit is contained in:
commit
9bb6d2f21d
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ def _match_lang(f):
|
|||
l = 'F'
|
||||
elif lang == 'de':
|
||||
l = 'A'
|
||||
regexes = [r'VO?%s' % l, r'V%s-ST.' % l]
|
||||
regexes = [r'VO?%s' % l, r'VO?.-ST%s' % l]
|
||||
return any(re.match(r, f['versionCode']) for r in regexes)
|
||||
# Some formats may not be in the same language as the url
|
||||
formats = filter(_match_lang, formats)
|
||||
|
|
Loading…
Reference in a new issue