mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
fix error checking for new SQL
This commit is contained in:
parent
1ccabe2965
commit
2460d904bd
@ -66,7 +66,7 @@ class MediaRepositoryStore(SQLBaseStore):
|
||||
txn.execute(sql, (url, ts))
|
||||
row = txn.fetchone()
|
||||
|
||||
if not row[3]:
|
||||
if not row:
|
||||
# ...or if we've requested a timestamp older than the oldest
|
||||
# copy in the cache, return the oldest copy (if any)
|
||||
sql = (
|
||||
@ -78,7 +78,7 @@ class MediaRepositoryStore(SQLBaseStore):
|
||||
txn.execute(sql, (url, ts))
|
||||
row = txn.fetchone()
|
||||
|
||||
if not row[3]:
|
||||
if not row:
|
||||
return None
|
||||
|
||||
return dict(zip((
|
||||
|
Loading…
Reference in New Issue
Block a user