mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Postgres doesn't like booleans
This commit is contained in:
parent
fe56138142
commit
b5d33a656f
@ -106,12 +106,12 @@ class RegistrationStore(SQLBaseStore):
|
||||
" upgrade_ts = ?,"
|
||||
" is_guest = ?"
|
||||
" WHERE name = ?",
|
||||
[password_hash, now, make_guest, user_id])
|
||||
[password_hash, now, 1 if make_guest else 0, user_id])
|
||||
else:
|
||||
txn.execute("INSERT INTO users "
|
||||
"(name, password_hash, creation_ts, is_guest) "
|
||||
"VALUES (?,?,?,?)",
|
||||
[user_id, password_hash, now, make_guest])
|
||||
[user_id, password_hash, now, 1 if make_guest else 0])
|
||||
except self.database_engine.module.IntegrityError:
|
||||
raise StoreError(
|
||||
400, "User ID already taken.", errcode=Codes.USER_IN_USE
|
||||
|
Loading…
Reference in New Issue
Block a user