fix error checking for new SQL

This commit is contained in:
Matthew Hodgson 2016-04-08 19:04:29 +01:00
parent 1ccabe2965
commit 2460d904bd

View file

@ -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((