mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[extractor] Do not exit early for unsuitable url_result
				
					
				
			This commit is contained in:
		| @@ -3513,8 +3513,8 @@ class InfoExtractor: | |||||||
|     @classmethod |     @classmethod | ||||||
|     def is_single_video(cls, url): |     def is_single_video(cls, url): | ||||||
|         """Returns whether the URL is of a single video, None if unknown""" |         """Returns whether the URL is of a single video, None if unknown""" | ||||||
|         assert cls.suitable(url), 'The URL must be suitable for the extractor' |         if cls.suitable(url): | ||||||
|         return {'video': True, 'playlist': False}.get(cls._RETURN_TYPE) |             return {'video': True, 'playlist': False}.get(cls._RETURN_TYPE) | ||||||
| 
 | 
 | ||||||
|     @classmethod |     @classmethod | ||||||
|     def is_suitable(cls, age_limit): |     def is_suitable(cls, age_limit): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan