diff options
author | bashonly <bashonly@bashonly.com> | 2023-07-27 09:53:22 -0500 |
---|---|---|
committer | bashonly <bashonly@bashonly.com> | 2023-07-27 09:53:22 -0500 |
commit | dae349da97cafe7357106a8f3187fd48a2ad1210 (patch) | |
tree | 1f79faede50dbe329ac9c5e82ba4efab1dc6da7e | |
parent | 95abea9a03289da1384e5bda3d590223ccc0a238 (diff) | |
download | hypervideo-pre-dae349da97cafe7357106a8f3187fd48a2ad1210.tar.lz hypervideo-pre-dae349da97cafe7357106a8f3187fd48a2ad1210.tar.xz hypervideo-pre-dae349da97cafe7357106a8f3187fd48a2ad1210.zip |
[ie/WrestleUniversePPV] Fix HLS AES key extraction
Fix bug in ef8fb7f029b816dfc95600727d84400591a3b5c5
Closes #7708
Authored by: bashonly
-rw-r--r-- | yt_dlp/extractor/wrestleuniverse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/wrestleuniverse.py b/yt_dlp/extractor/wrestleuniverse.py index 99a8f0120..dd12804db 100644 --- a/yt_dlp/extractor/wrestleuniverse.py +++ b/yt_dlp/extractor/wrestleuniverse.py @@ -300,7 +300,7 @@ class WrestleUniversePPVIE(WrestleUniverseBaseIE): info['hls_aes'] = { 'key': hls_aes_key, 'iv': traverse_obj(video_data, ('hls', 'iv', {decrypt})), - }, + } elif traverse_obj(video_data, ('hls', 'encryptType', {int})): self.report_warning('HLS AES-128 key was not found in API response') |