mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-03 19:23:44 +00:00 
			
		
		
		
	[youtube] Fix lazy extractors (closes #28780)
This commit is contained in:
		
							parent
							
								
									dab83a2597
								
							
						
					
					
						commit
						32290307a4
					
				@ -1219,6 +1219,9 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
 | 
			
		||||
 | 
			
		||||
    @classmethod
 | 
			
		||||
    def suitable(cls, url):
 | 
			
		||||
        # Hack for lazy extractors until more generic solution is implemented
 | 
			
		||||
        # (see #28780)
 | 
			
		||||
        from .youtube import parse_qs
 | 
			
		||||
        qs = parse_qs(url)
 | 
			
		||||
        if qs.get('list', [None])[0]:
 | 
			
		||||
            return False
 | 
			
		||||
@ -2910,6 +2913,9 @@ class YoutubePlaylistIE(InfoExtractor):
 | 
			
		||||
    def suitable(cls, url):
 | 
			
		||||
        if YoutubeTabIE.suitable(url):
 | 
			
		||||
            return False
 | 
			
		||||
        # Hack for lazy extractors until more generic solution is implemented
 | 
			
		||||
        # (see #28780)
 | 
			
		||||
        from .youtube import parse_qs
 | 
			
		||||
        qs = parse_qs(url)
 | 
			
		||||
        if qs.get('v', [None])[0]:
 | 
			
		||||
            return False
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user