Jul 29 - Hotfix auth email sender

This commit is contained in:
2026-07-29 17:20:04 -04:00
parent 321965038d
commit 7c064b6ca1
2 changed files with 31 additions and 10 deletions
+1 -1
View File
@@ -333,7 +333,7 @@ def edit(customer_id):
if form.validate_on_submit():
customer.username = form.username.data
customer.full_name = form.full_name.data.strip() or None
customer.email = form.email.data
customer.email = form.email.data.strip().lower()
if form.password.data:
customer.set_password(form.password.data)
db.session.commit()