Adding is_guest here won't work because it just constructs a dict of uid -> password hash

This commit is contained in:
David Baker 2016-01-06 17:16:02 +00:00
parent 0e48f7f245
commit b6a585348a

View file

@ -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,))