mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 02:01:50 +00:00
[applepodcasts] fix extraction(closes #28445)
This commit is contained in:
parent
9955bb4a27
commit
3be098010f
1 changed files with 1 additions and 0 deletions
|
@ -42,6 +42,7 @@ class ApplePodcastsIE(InfoExtractor):
|
|||
ember_data = self._parse_json(self._search_regex(
|
||||
r'id="shoebox-ember-data-store"[^>]*>\s*({.+?})\s*<',
|
||||
webpage, 'ember data'), episode_id)
|
||||
ember_data = ember_data.get(episode_id) or ember_data
|
||||
episode = ember_data['data']['attributes']
|
||||
description = episode.get('description') or {}
|
||||
|
||||
|
|
Loading…
Reference in a new issue