mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 22:14:57 -04:00
Ensure emails are canonicalized before fetching associated user. (#11547)
This should fix pushers with an email in non-canonical form is used as the pushkey.
This commit is contained in:
parent
3b8872299a
commit
9562f0c2f1
5 changed files with 11 additions and 4 deletions
|
@ -1550,7 +1550,8 @@ class UserRestTestCase(unittest.HomeserverTestCase):
|
|||
# Create user
|
||||
body = {
|
||||
"password": "abc123",
|
||||
"threepids": [{"medium": "email", "address": "bob@bob.bob"}],
|
||||
# Note that the given email is not in canonical form.
|
||||
"threepids": [{"medium": "email", "address": "Bob@bob.bob"}],
|
||||
}
|
||||
|
||||
channel = self.make_request(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue