fix: Check correct form value for regex
All checks were successful
Build Docker / Build Main Image (push) Successful in 21s
All checks were successful
Build Docker / Build Main Image (push) Successful in 21s
This commit is contained in:
parent
994ca7e1e7
commit
46b49d588d
2
main.py
2
main.py
@ -104,7 +104,7 @@ def add_link():
|
|||||||
if not (url.startswith('http://') or url.startswith('https://')):
|
if not (url.startswith('http://') or url.startswith('https://')):
|
||||||
url = 'https://' + url
|
url = 'https://' + url
|
||||||
|
|
||||||
regexmatch = re.match(r"^https?://([a-z0-9]+(-[a-z0-9]+)*\.)*([a-z0-9]+(-[a-z0-9]+)*)(/([a-z0-9.])+(-([a-z0-9.])+)?)*$", domain)
|
regexmatch = re.match(r"^https?://([a-z0-9]+(-[a-z0-9]+)*\.)*([a-z0-9]+(-[a-z0-9]+)*)(/([a-z0-9.])+(-([a-z0-9.])+)?)*$", url)
|
||||||
if not regexmatch:
|
if not regexmatch:
|
||||||
return error('Invalid domain')
|
return error('Invalid domain')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user