summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--synapse/storage/events.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py
index 77ba7eb2af..9ef7aefd97 100644
--- a/synapse/storage/events.py
+++ b/synapse/storage/events.py
@@ -268,7 +268,8 @@ class EventsStore(
                 "_censor_redactions", self._censor_redactions
             )
 
-        hs.get_clock().looping_call(_censor_redactions, 10 * 60 * 1000)
+        if self.hs.config.redaction_retention_period is not None:
+            hs.get_clock().looping_call(_censor_redactions, 10 * 60 * 1000)
 
     @defer.inlineCallbacks
     def _read_forward_extremities(self):