forked from MirrorHub/synapse
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_clause = "user_id = ?"
|
||||||
query_params.append(user_id)
|
query_params.append(user_id)
|
||||||
|
|
||||||
if device_id:
|
if device_id is not None:
|
||||||
query_clause += " AND device_id = ?"
|
query_clause += " AND device_id = ?"
|
||||||
query_params.append(device_id)
|
query_params.append(device_id)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue