diff options
author | Chocobozzz <me@florianbigard.com> | 2019-04-25 10:03:30 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-04-25 10:03:30 +0200 |
commit | c1521ca3d757bee91f7dfbb15b3717162bf4997d (patch) | |
tree | 2d17c398010b39b41e72ce2b728648cc9682a153 | |
parent | 98000f10e7058ee9d7c82925c46985b1d2af4b0e (diff) | |
download | PeerTube-c1521ca3d757bee91f7dfbb15b3717162bf4997d.tar.gz PeerTube-c1521ca3d757bee91f7dfbb15b3717162bf4997d.tar.zst PeerTube-c1521ca3d757bee91f7dfbb15b3717162bf4997d.zip |
Case insensitive login
-rw-r--r-- | client/src/app/core/auth/auth.service.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
153 | response_type: 'code', | 153 | response_type: 'code', |
154 | grant_type: 'password', | 154 | grant_type: 'password', |
155 | scope: 'upload', | 155 | scope: 'upload', |
156 | username, | 156 | username: username.toLowerCase(), |
157 | password | 157 | password |
158 | } | 158 | } |
159 | 159 | ||