mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 22:55:18 +00:00 
			
		
		
		
	[cleanup, ie] Match both http and https in _VALID_URL (#8968)
				
					
				
			Except for Vimeo, since that causes matching collisions. Authored by: seproDev
This commit is contained in:
		| @@ -224,7 +224,7 @@ class ViceShowIE(ViceBaseIE): | ||||
| 
 | ||||
| class ViceArticleIE(ViceBaseIE): | ||||
|     IE_NAME = 'vice:article' | ||||
|     _VALID_URL = r'https://(?:www\.)?vice\.com/(?P<locale>[^/]+)/article/(?:[0-9a-z]{6}/)?(?P<id>[^?#]+)' | ||||
|     _VALID_URL = r'https?://(?:www\.)?vice\.com/(?P<locale>[^/]+)/article/(?:[0-9a-z]{6}/)?(?P<id>[^?#]+)' | ||||
| 
 | ||||
|     _TESTS = [{ | ||||
|         'url': 'https://www.vice.com/en_us/article/on-set-with-the-woman-making-mormon-porn-in-utah', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 sepro
					sepro