July 7 - Fix reset link hasn't been sent

This commit is contained in:
2026-07-07 11:25:43 -04:00
parent f84dc3d020
commit 8c23af3b80
2 changed files with 16 additions and 6 deletions
+1 -1
View File
@@ -328,7 +328,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()