mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -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:
|
||||
if was_guest:
|
||||
# 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(
|
||||
txn,
|
||||
"users",
|
||||
|
Loading…
Reference in New Issue
Block a user