mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
avoid access-error if no filter_id matches
This commit is contained in:
parent
eb7cbf27bc
commit
64953c8ed2
@ -56,9 +56,9 @@ class FilteringStore(SQLBaseStore):
|
||||
"WHERE user_id = ? AND filter_json = ?"
|
||||
)
|
||||
txn.execute(sql, (user_localpart, def_json))
|
||||
filter_id = txn.fetchone()[0]
|
||||
if filter_id is not None:
|
||||
return filter_id
|
||||
filter_id_response = txn.fetchone()
|
||||
if filter_id_response is not None:
|
||||
return filter_id_response[0]
|
||||
|
||||
sql = (
|
||||
"SELECT MAX(filter_id) FROM user_filters "
|
||||
|
Loading…
Reference in New Issue
Block a user