diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-04-24 10:24:10 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-04-24 10:24:10 +0100 |
commit | 00831b23236db781e9c8630cf885092cee0dafce (patch) | |
tree | 3aa04987916e2b7e9ce5d7e035c9e7569df10f5e /synapse/handlers | |
parent | Merge branch 'dinsic-release-v1.12.x' of github.com:matrix-org/synapse-dinsic... (diff) | |
download | synapse-00831b23236db781e9c8630cf885092cee0dafce.tar.xz |
Fix some broken references
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/register.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/synapse/handlers/register.py b/synapse/handlers/register.py index 696d90996a..b0a3725903 100644 --- a/synapse/handlers/register.py +++ b/synapse/handlers/register.py @@ -272,7 +272,7 @@ class RegistrationHandler(BaseHandler): } # Bind email to new account - yield self._register_email_threepid(user_id, threepid_dict, None) + yield self.register_email_threepid(user_id, threepid_dict, None) # Prevent the new user from showing up in the user directory if the server # mandates it. @@ -371,7 +371,7 @@ class RegistrationHandler(BaseHandler): password_hash = "" if password: - password_hash = yield self.auth_handler().hash(password) + password_hash = yield self._auth_handler().hash(password) display_name = display_name or user.localpart @@ -644,7 +644,7 @@ class RegistrationHandler(BaseHandler): ): yield self.store.upsert_monthly_active_user(user_id) - yield self._register_email_threepid(user_id, threepid, access_token) + yield self.register_email_threepid(user_id, threepid, access_token) if auth_result and LoginType.MSISDN in auth_result: threepid = auth_result[LoginType.MSISDN] @@ -667,7 +667,7 @@ class RegistrationHandler(BaseHandler): yield self.post_consent_actions(user_id) @defer.inlineCallbacks - def _register_email_threepid(self, user_id, threepid, token): + def register_email_threepid(self, user_id, threepid, token): """Add an email address as a 3pid identifier Also adds an email pusher for the email address, if configured in the |