fix: Typo in regex
All checks were successful
Build Docker / Build Main Image (push) Successful in 32s

This commit is contained in:
Nathan Woodburn 2023-11-17 00:24:05 +11:00
parent 2292b912d2
commit 994ca7e1e7
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -104,7 +104,7 @@ def add_link():
if not (url.startswith('http://') or url.startswith('https://')):
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.])+)?)*$", domain)
if not regexmatch:
return error('Invalid domain')