mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
add udp to is_url to allow udp trackers
This commit is contained in:
parent
3b1e93bf88
commit
0661c70594
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ def ftime(seconds):
|
|||
def is_url(url):
|
||||
"""A simple regex test to check if the URL is valid."""
|
||||
import re
|
||||
return bool(re.search('^(https?|ftp)://', url))
|
||||
return bool(re.search('^(https?|ftp|udp)://', url))
|
||||
|
||||
def fetch_url(url):
|
||||
"""Downloads a torrent file from a given
|
||||
|
|
Loading…
Add table
Reference in a new issue