mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 08:47:06 -05:00 
			
		
		
		
	[youtube] Fix relative URLs in description
This commit is contained in:
		@@ -1630,7 +1630,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
 | 
			
		||||
                    class="[^"]*"[^>]*>
 | 
			
		||||
                [^<]+\.{3}\s*
 | 
			
		||||
                </a>
 | 
			
		||||
            ''', r'\1', video_description)
 | 
			
		||||
            ''', lambda m: compat_urlparse.urljoin(url, m.group(1)), video_description)
 | 
			
		||||
            video_description = clean_html(video_description)
 | 
			
		||||
        else:
 | 
			
		||||
            fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user