Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
remove unused parameter to get_user_id_by_threepid (#6099)
Browse files Browse the repository at this point in the history
Added in #5377, apparently in error
  • Loading branch information
richvdh committed Sep 24, 2019
1 parent bb82be9 commit 566ac40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/6099.misc
@@ -0,0 +1 @@
Remove unused parameter to get_user_id_by_threepid.
2 changes: 1 addition & 1 deletion synapse/storage/registration.py
Expand Up @@ -495,7 +495,7 @@ def _find_next_generated_user_id(txn):
)

@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:
Expand Down

0 comments on commit 566ac40

Please sign in to comment.