mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-04 18:48:52 +01:00
Merge branch 'insensitive-login' into 'next'
Case insensitive username login Closes #248 See merge request famedly/conduit!323
This commit is contained in:
commit
d89141100c
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ pub async fn login_route(
|
|||
password,
|
||||
}) => {
|
||||
let username = if let IncomingUserIdentifier::MatrixId(matrix_id) = identifier {
|
||||
matrix_id
|
||||
matrix_id.to_lowercase()
|
||||
} else {
|
||||
return Err(Error::BadRequest(ErrorKind::Forbidden, "Bad login type."));
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue