mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 10:06:05 -04:00
Remove pointless create() method
It just calls the constructor, so we may as well kill it rather than having random codepaths.
This commit is contained in:
parent
b4a6b7f720
commit
631d7b87b5
6 changed files with 8 additions and 12 deletions
|
@ -267,7 +267,7 @@ class AuthHandler(BaseHandler):
|
|||
user_id = authdict["user"]
|
||||
password = authdict["password"]
|
||||
if not user_id.startswith('@'):
|
||||
user_id = UserID.create(user_id, self.hs.hostname).to_string()
|
||||
user_id = UserID(user_id, self.hs.hostname).to_string()
|
||||
|
||||
return self._check_password(user_id, password)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue