Browse Source

[youku] Fix list extraction.(close #15065)

Change-Id: I578fdc5b69509bdcd8d3191e3917afe47c234ff6
master-ytdl-org
JianxinLi 7 years ago
committed by Yen Chi Hsuan
parent
commit
d99a1000c7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/youku.py

+ 1
- 1
youtube_dl/extractor/youku.py View File

@ -276,9 +276,9 @@ class YoukuShowIE(InfoExtractor):
r'<div[^>]+id="(reload_\d+)', first_page, 'first page reload id')
# The first reload_id has the same items as first_page
reload_ids = re.findall('<li[^>]+data-id="([^"]+)">', first_page)
entries.extend(initial_entries)
for idx, reload_id in enumerate(reload_ids):
if reload_id == first_page_reload_id:
entries.extend(initial_entries)
continue
_, new_entries = self._extract_entries(
'http://list.youku.com/show/episode', show_id,


Loading…
Cancel
Save