Skip to content

Commit

Permalink
[ie/WrestleUniversePPV] Fix HLS AES key extraction
Browse files Browse the repository at this point in the history
Fix bug in ef8fb7f

Closes #7708
Authored by: bashonly
  • Loading branch information
bashonly committed Jul 27, 2023
1 parent 95abea9 commit dae349d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/wrestleuniverse.py
Expand Up @@ -300,7 +300,7 @@ def _real_extract(self, url):
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')

Expand Down

0 comments on commit dae349d

Please sign in to comment.