mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	Improve URL extraction
This commit is contained in:
		| @@ -27,6 +27,7 @@ from ..utils import ( | ||||
|     unified_timestamp, | ||||
|     update_url_query, | ||||
|     urlencode_postdata, | ||||
|     url_or_none, | ||||
|     urljoin, | ||||
| ) | ||||
|  | ||||
| @@ -663,8 +664,8 @@ class TwitchClipsIE(TwitchBaseIE): | ||||
|         for option in status['quality_options']: | ||||
|             if not isinstance(option, dict): | ||||
|                 continue | ||||
|             source = option.get('source') | ||||
|             if not source or not isinstance(source, compat_str): | ||||
|             source = url_or_none(option.get('source')) | ||||
|             if not source: | ||||
|                 continue | ||||
|             formats.append({ | ||||
|                 'url': source, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․