mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-14 02:27:42 -07:00
[utils] accept only supported protocols in url_or_none
This commit is contained in:
parent
9c1e164e0c
commit
9dd674e1d2
2 changed files with 6 additions and 1 deletions
|
@ -3640,7 +3640,7 @@ def url_or_none(url):
|
|||
if not url or not isinstance(url, compat_str):
|
||||
return None
|
||||
url = url.strip()
|
||||
return url if re.match(r'^(?:[a-zA-Z][\da-zA-Z.+-]*:)?//', url) else None
|
||||
return url if re.match(r'^(?:(?:https?|rt(?:m(?:pt?[es]?|fp)|sp[su]?)|mms|ftps?):)?//', url) else None
|
||||
|
||||
|
||||
def parse_duration(s):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue