mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +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:
		| @@ -16,7 +16,7 @@ from ..utils import ( | ||||
| 
 | ||||
| 
 | ||||
| class MonstercatIE(InfoExtractor): | ||||
|     _VALID_URL = r'https://www\.monstercat\.com/release/(?P<id>\d+)' | ||||
|     _VALID_URL = r'https?://www\.monstercat\.com/release/(?P<id>\d+)' | ||||
|     _TESTS = [{ | ||||
|         'url': 'https://www.monstercat.com/release/742779548009', | ||||
|         'playlist_count': 20, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 sepro
					sepro