Case insensitive login

This commit is contained in:
Chocobozzz 2019-04-25 10:03:30 +02:00
parent 98000f10e7
commit c1521ca3d7
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

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