diff options
author | Erik Johnston <erik@matrix.org> | 2019-10-02 10:57:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-02 10:57:30 +0100 |
commit | 35f392bb29fb3ee6f1f934d60032b597ae01ad08 (patch) | |
tree | b26cd9d04e97cde77fb97fc6f9d83fd5fd911445 /synapse | |
parent | Merge pull request #6141 from matrix-org/erikj/censor_redactions_fix (diff) | |
parent | Newsfile (diff) | |
download | synapse-35f392bb29fb3ee6f1f934d60032b597ae01ad08.tar.xz |
Merge pull request #6145 from matrix-org/erikj/fix_censored_redactions
Fix fetching censored redactions from DB
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/events_worker.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/synapse/storage/events_worker.py b/synapse/storage/events_worker.py index c6fa7f82fd..57ce0304e9 100644 --- a/synapse/storage/events_worker.py +++ b/synapse/storage/events_worker.py @@ -238,6 +238,20 @@ class EventsWorkerStore(SQLBaseStore): # we have to recheck auth now. if not allow_rejected and entry.event.type == EventTypes.Redaction: + if not hasattr(entry.event, "redacts"): + # A redacted redaction doesn't have a `redacts` key, in + # which case lets just withhold the event. + # + # Note: Most of the time if the redactions has been + # redacted we still have the un-redacted event in the DB + # and so we'll still see the `redacts` key. However, this + # isn't always true e.g. if we have censored the event. + logger.debug( + "Withholding redaction event %s as we don't have redacts key", + event_id, + ) + continue + redacted_event_id = entry.event.redacts event_map = yield self._get_events_from_cache_or_db([redacted_event_id]) original_event_entry = event_map.get(redacted_event_id) |