mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[utils] clean_podcast_url: Handle protocol in redirect URL
Closes #7430
This commit is contained in:
		| @@ -5113,7 +5113,7 @@ def format_field(obj, field=None, template='%s', ignore=NO_DEFAULT, default='', | ||||
| 
 | ||||
| 
 | ||||
| def clean_podcast_url(url): | ||||
|     return re.sub(r'''(?x) | ||||
|     url = re.sub(r'''(?x) | ||||
|         (?: | ||||
|             (?: | ||||
|                 chtbl\.com/track| | ||||
| @@ -5127,6 +5127,7 @@ def clean_podcast_url(url): | ||||
|                 st\.fm # https://podsights.com/docs/ | ||||
|             )/e | ||||
|         )/''', '', url) | ||||
|     return re.sub(r'^\w+://(\w+://)', r'\1', url) | ||||
| 
 | ||||
| 
 | ||||
| _HEX_TABLE = '0123456789abcdef' | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan