mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-31 03:45:13 +00:00
Make None check explicit
This commit is contained in:
parent
f20cd34858
commit
52cd019a54
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ class EndToEndKeyStore(SQLBaseStore):
|
|||
query_clause = "user_id = ?"
|
||||
query_params.append(user_id)
|
||||
|
||||
if device_id:
|
||||
if device_id is not None:
|
||||
query_clause += " AND device_id = ?"
|
||||
query_params.append(device_id)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue