mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Add a comment explaining allow_none
This commit is contained in:
parent
10c843fcfb
commit
dfde67a6fe
@ -128,6 +128,8 @@ class RegistrationStore(SQLBaseStore):
|
|||||||
try:
|
try:
|
||||||
if was_guest:
|
if was_guest:
|
||||||
# Ensure that the guest user actually exists
|
# Ensure that the guest user actually exists
|
||||||
|
# ``allow_none=False`` makes this raise an exception
|
||||||
|
# if the row isn't in the database.
|
||||||
self._simple_select_one_txn(
|
self._simple_select_one_txn(
|
||||||
txn,
|
txn,
|
||||||
"users",
|
"users",
|
||||||
|
Loading…
Reference in New Issue
Block a user