This commit is contained in:
J. A. Messias 2024-10-01 17:30:37 -03:00
parent 2d62aaac5d
commit 5c567eb5dc
1 changed files with 2 additions and 2 deletions

View File

@ -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,