diff options
| author | Remita Amine <remitamine@gmail.com> | 2021-04-03 08:23:35 +0100 | 
|---|---|---|
| committer | Remita Amine <remitamine@gmail.com> | 2021-04-03 08:23:35 +0100 | 
| commit | 654b4f4ff2718f38b3182c1188c5d569c14cc70a (patch) | |
| tree | ec5b8770142b5d37362dfc0c927305649d9fac88 | |
| parent | 1df2596f81695bf452ffbfd89596d115d9b2daf5 (diff) | |
[youtube] prioritize information from YoutubeIE for playlist entries(closes #28619, closes #28636)
| -rw-r--r-- | youtube_dl/extractor/youtube.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 1f5497e24..2e027528d 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -329,7 +329,7 @@ class YoutubeBaseInfoExtractor(InfoExtractor):              (lambda x: x['ownerText']['runs'][0]['text'],               lambda x: x['shortBylineText']['runs'][0]['text']), compat_str)          return { -            '_type': 'url_transparent', +            '_type': 'url',              'ie_key': YoutubeIE.ie_key(),              'id': video_id,              'url': video_id, | 
