From 5c567eb5dc521fad12ff9448f83ab1f79a0fb0ef Mon Sep 17 00:00:00 2001 From: "J. A. Messias" Date: Tue, 1 Oct 2024 17:30:37 -0300 Subject: [PATCH] WIP --- lib/backend/api_requests/api_calls.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/backend/api_requests/api_calls.dart b/lib/backend/api_requests/api_calls.dart index f5e918a7..dd576740 100644 --- a/lib/backend/api_requests/api_calls.dart +++ b/lib/backend/api_requests/api_calls.dart @@ -603,7 +603,7 @@ class LoginCall { 'Content-Type': 'application/x-www-form-urlencoded', }, params: { - 'email': email, + 'email': email.toLowerCase(), 'password': password, 'uuid': devUUID, 'token': token, @@ -642,7 +642,7 @@ class RegisterCall { }, params: { 'name': name, - 'email': email, + 'email': email.toLowerCase(), 'password': password, 'token': token, 'uuid': uuid,