diff options
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/media_repository.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/media_repository.py b/synapse/storage/media_repository.py index 6bc53bbb6d..a820fcf07f 100644 --- a/synapse/storage/media_repository.py +++ b/synapse/storage/media_repository.py @@ -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(( |