mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Only pull out local media that were for url cache
This commit is contained in:
parent
5f501ec7e2
commit
93247a424a
@ -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"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user