mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Fix blip.tv regular expression to not match blipXtv
This commit is contained in:
parent
86e709d3de
commit
1cab2c6dcf
1 changed files with 1 additions and 1 deletions
|
@ -2741,7 +2741,7 @@ class FacebookIE(InfoExtractor):
|
|||
class BlipTVIE(InfoExtractor):
|
||||
"""Information extractor for blip.tv"""
|
||||
|
||||
_VALID_URL = r'^(?:https?://)?(?:\w+\.)?blip.tv(/.+)$'
|
||||
_VALID_URL = r'^(?:https?://)?(?:\w+\.)?blip\.tv(/.+)$'
|
||||
_URL_EXT = r'^.*\.([a-z0-9]+)$'
|
||||
|
||||
@staticmethod
|
||||
|
|
Loading…
Reference in a new issue