Only pull out local media that were for url cache

pull/2480/head
Erik Johnston 2017-09-28 13:48:14 +01:00
parent 5f501ec7e2
commit 93247a424a
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ class MediaRepositoryStore(SQLBaseStore):
def get_url_cache_media_before(self, before_ts):
sql = (
"SELECT media_id FROM local_media_repository"
" WHERE created_ts < ?"
" WHERE created_ts < ? AND url_cache IS NOT NULL"
" ORDER BY created_ts ASC"
" LIMIT 100"
)