1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-25 03:17:45 +08:00

[ard] ARDBetaMediathek: don't abort when geoblocked

This doesn't work since the flag is always present as long as the video is geoblocked in any country.
This commit is contained in:
Niklas 2018-10-10 02:18:13 +02:00
parent 1135a30970
commit 18dda9e7b4
No known key found for this signature in database
GPG Key ID: C7070AE8E74845B8

View File

@ -322,9 +322,6 @@ class ARDBetaMediathekIE(InfoExtractor):
}
formats = []
for widget in data.values():
if widget.get('_geoblocked'):
raise ExtractorError('This video is not available due to geoblocking', expected=True)
if '_duration' in widget:
res['duration'] = widget['_duration']
if 'clipTitle' in widget: