mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-05 16:08:40 +00:00
add udp to is_url to allow udp trackers
This commit is contained in:
parent
72aaef6191
commit
6d3acf6dca
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ def ftime(seconds):
|
||||||
def is_url(url):
|
def is_url(url):
|
||||||
"""A simple regex test to check if the URL is valid."""
|
"""A simple regex test to check if the URL is valid."""
|
||||||
import re
|
import re
|
||||||
return bool(re.search('^(https?|ftp)://', url))
|
return bool(re.search('^(https?|ftp|udp)://', url))
|
||||||
|
|
||||||
def is_magnet(uri):
|
def is_magnet(uri):
|
||||||
"""Returns True if uri is a valid bittorrent magnet uri."""
|
"""Returns True if uri is a valid bittorrent magnet uri."""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue