mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[youtube] Filter duplicates in playlists base extractor
This commit is contained in:
		| @@ -233,7 +233,7 @@ class YoutubePlaylistBaseInfoExtractor(YoutubeEntryListBaseInfoExtractor): | ||||
|  | ||||
| class YoutubePlaylistsBaseInfoExtractor(YoutubeEntryListBaseInfoExtractor): | ||||
|     def _process_page(self, content): | ||||
|         for playlist_id in re.findall(r'href="/?playlist\?list=(.+?)"', content): | ||||
|         for playlist_id in set(re.findall(r'href="/?playlist\?list=([0-9A-Za-z-_]{10,})"', content)): | ||||
|             yield self.url_result( | ||||
|                 'https://www.youtube.com/playlist?list=%s' % playlist_id, 'YoutubePlaylist') | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user