Case insensitive login

This commit is contained in:
Chocobozzz
2019-04-25 10:03:30 +02:00
parent 98000f10e7
commit c1521ca3d7

View File

@@ -153,7 +153,7 @@ export class AuthService {
response_type: 'code',
grant_type: 'password',
scope: 'upload',
username,
username: username.toLowerCase(),
password
}