matrix-org / dendrite

Dendrite is a second-generation Matrix homeserver written in Go!
https://matrix-org.github.io/dendrite/
Apache License 2.0
5.67k stars 664 forks source link

Login API should casefold usernames, matching registration API #2059

Closed timmc closed 2 years ago

timmc commented 2 years ago

Background information

Description

User can register with mixed-case names e.g. Test but then cannot log in.

Steps to reproduce

The registration code case-folds the username to lowercase, so the registered username is actually test. However, the login code doesn't perform this case-folding, so login fails.

References:

timmc commented 2 years ago

Looks like this is taken care of by that PR. :100: