diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-01-29 21:14:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-29 21:14:39 +0000 |
commit | 82165eeb052ce69f078cdf3371127cc89c702424 (patch) | |
tree | 16bb162d556aa240f11d234b6a0cd420179e86f9 | |
parent | Finish comment... (diff) | |
download | synapse-82165eeb052ce69f078cdf3371127cc89c702424.tar.xz |
Update synapse/storage/events_worker.py
Co-Authored-By: erikjohnston <erikj@jki.re>
-rw-r--r-- | synapse/storage/events_worker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/events_worker.py b/synapse/storage/events_worker.py index 9ce19430e8..9dcb27b65d 100644 --- a/synapse/storage/events_worker.py +++ b/synapse/storage/events_worker.py @@ -175,7 +175,7 @@ class EventsWorkerStore(SQLBaseStore): if not entry: continue - # Some redactions in room version v3 need to be rechecked if we + # Starting in room version v3, some redactions need to be rechecked if we # didn't have the redacted event at the time, so we recheck on read # instead. if not allow_rejected and entry.event.type == EventTypes.Redaction: |