mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-10 12:02:43 +01:00
remove unused parameter to get_user_id_by_threepid (#6099)
Added in #5377, apparently in error
This commit is contained in:
parent
bb82be9851
commit
566ac40939
2 changed files with 2 additions and 1 deletions
1
changelog.d/6099.misc
Normal file
1
changelog.d/6099.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Remove unused parameter to get_user_id_by_threepid.
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue