mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 09:06:06 -04:00
fix reference to is_threepid_reserved
This commit is contained in:
parent
a796bdd35e
commit
e8e540630e
1 changed files with 1 additions and 1 deletions
|
@ -809,7 +809,7 @@ class Auth(object):
|
|||
elif threepid:
|
||||
# If the user does not exist yet, but is signing up with a
|
||||
# reserved threepid then pass auth check
|
||||
if is_threepid_reserved(threepid):
|
||||
if self.store.is_threepid_reserved(threepid):
|
||||
return
|
||||
# Else if there is no room in the MAU bucket, bail
|
||||
current_mau = yield self.store.get_monthly_active_count()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue