Prevent breaking old sqlite's when media retention is enabled (#12977)
parent
a47636c570
commit
c51f5b9592
|
@ -0,0 +1 @@
|
||||||
|
Add new `media_retention` options to the homeserver config for routinely cleaning up non-recently accessed media.
|
|
@ -327,7 +327,7 @@ class MediaRepositoryStore(MediaRepositoryBackgroundUpdateStore):
|
||||||
if include_protected_media is False:
|
if include_protected_media is False:
|
||||||
# Do not include media that has been protected from quarantine
|
# Do not include media that has been protected from quarantine
|
||||||
sql += """
|
sql += """
|
||||||
AND safe_from_quarantine = false
|
AND NOT safe_from_quarantine
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def _get_local_media_ids_txn(txn: LoggingTransaction) -> List[str]:
|
def _get_local_media_ids_txn(txn: LoggingTransaction) -> List[str]:
|
||||||
|
|
Loading…
Reference in New Issue