mirror of
				https://code.hackerspace.pl/q3k/youtube-dl
				synced 2025-03-16 11:43:02 +00:00 
			
		
		
		
	[youtube:playlist] Fix nonexistent/private playlist detection (closes #11604)
This commit is contained in:
		
							parent
							
								
									a089545e03
								
							
						
					
					
						commit
						8bc0800d7c
					
				| @ -1998,7 +1998,8 @@ class YoutubePlaylistIE(YoutubePlaylistBaseInfoExtractor): | ||||
|         url = self._TEMPLATE_URL % playlist_id | ||||
|         page = self._download_webpage(url, playlist_id) | ||||
| 
 | ||||
|         for match in re.findall(r'<div class="yt-alert-message">([^<]+)</div>', page): | ||||
|         # the yt-alert-message now has tabindex attribute (see https://github.com/rg3/youtube-dl/issues/11604) | ||||
|         for match in re.findall(r'<div class="yt-alert-message"[^>]*>([^<]+)</div>', page): | ||||
|             match = match.strip() | ||||
|             # Check if the playlist exists or is private | ||||
|             if re.match(r'[^<]*(The|This) playlist (does not exist|is private)[^<]*', match): | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Grzegorz P
						Grzegorz P