From c1521ca3d757bee91f7dfbb15b3717162bf4997d Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 25 Apr 2019 10:03:30 +0200 Subject: Case insensitive login --- client/src/app/core/auth/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/src/app') diff --git a/client/src/app/core/auth/auth.service.ts b/client/src/app/core/auth/auth.service.ts index eaa822e0f..4fc04a05c 100644 --- a/client/src/app/core/auth/auth.service.ts +++ b/client/src/app/core/auth/auth.service.ts @@ -153,7 +153,7 @@ export class AuthService { response_type: 'code', grant_type: 'password', scope: 'upload', - username, + username: username.toLowerCase(), password } -- cgit v1.2.3