Browse Source

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

Remita Amine 6 years ago
parent
commit
c3c098dcf2
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/extractor/hotstar.py

+ 2 - 1
youtube_dl/extractor/hotstar.py

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