[hotstar] fix video data extraction(closes #18386)

This commit is contained in:
Remita Amine 2018-12-07 18:52:01 +01:00
parent 8c5879715f
commit c3c098dcf2
1 changed files with 2 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class HotStarIE(HotStarBaseIE):
r'<script>window\.APP_STATE\s*=\s*({.+?})</script>',
webpage, 'app state'), video_id)
video_data = {}
getters = (
getters = list(
lambda x, k=k: x['initialState']['content%s' % k]['content']
for k in ('Data', 'Detail')
)
@ -87,6 +87,7 @@ class HotStarIE(HotStarBaseIE):
content = try_get(v, getters, dict)
if content and content.get('contentId') == video_id:
video_data = content
break
title = video_data['title']