diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-09-24 17:01:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-24 17:01:09 +0100 |
commit | 566ac40939404649d58c053e97dba75810f95339 (patch) | |
tree | 25d2d55cf88cb7e15c696b63d29756cb400694ce /synapse | |
parent | Merge pull request #6069 from matrix-org/rav/fix_attribute_mapping (diff) | |
download | synapse-566ac40939404649d58c053e97dba75810f95339.tar.xz |
remove unused parameter to get_user_id_by_threepid (#6099)
Added in #5377, apparently in error
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/registration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py index 805411a6b2..5cf2c893aa 100644 --- a/synapse/storage/registration.py +++ b/synapse/storage/registration.py @@ -495,7 +495,7 @@ class RegistrationWorkerStore(SQLBaseStore): ) @defer.inlineCallbacks - def get_user_id_by_threepid(self, medium, address, require_verified=False): + def get_user_id_by_threepid(self, medium, address): """Returns user id from threepid Args: |