mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-09 17:36:59 +00:00
Adding is_guest here won't work because it just constructs a dict of uid -> password hash
This commit is contained in:
parent
0e48f7f245
commit
b6a585348a
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ class RegistrationStore(SQLBaseStore):
|
|||
"""
|
||||
def f(txn):
|
||||
sql = (
|
||||
"SELECT name, password_hash, is_guest FROM users"
|
||||
"SELECT name, password_hash FROM users"
|
||||
" WHERE lower(name) = lower(?)"
|
||||
)
|
||||
txn.execute(sql, (user_id,))
|
||||
|
|
Loading…
Add table
Reference in a new issue