1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 16:45:17 +00:00

[rai] fix drm check (#168)

Bug introduced by #150
Authored by: nixxo
This commit is contained in:
nixxo
2021-03-13 16:38:50 +01:00
committed by GitHub
parent 4cf1e5d2f9
commit 8eec0120a2

View File

@ -170,7 +170,7 @@ class RaiPlayIE(RaiBaseIE):
media = self._download_json(
base + '.json', video_id, 'Downloading video JSON')
if not self.params.get('allow_unplayable_formats'):
if not self._downloader.params.get('allow_unplayable_formats'):
if try_get(
media,
(lambda x: x['rights_management']['rights']['drm'],