mirror of
https://github.com/simple-login/app.git
synced 2025-02-25 00:03:03 +08:00
Merge pull request #32 from simple-login/fix-custom-domain
make sure to "strip" custom domain before adding to DB
This commit is contained in:
commit
f358d9de19
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ def custom_domain():
|
|||
if request.method == "POST":
|
||||
if request.form.get("form-name") == "create":
|
||||
if new_custom_domain_form.validate():
|
||||
new_domain = new_custom_domain_form.domain.data
|
||||
new_domain = new_custom_domain_form.domain.data.strip()
|
||||
if CustomDomain.get_by(domain=new_domain):
|
||||
flash(f"{new_domain} already added", "warning")
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue