Merge pull request #1003 from matrix-org/erikj/redaction_prev_content

Include prev_content in redacted state events
pull/1005/head
Erik Johnston 2016-08-11 10:41:18 +01:00 committed by GitHub
commit c9c1541fd0
1 changed files with 2 additions and 0 deletions

View File

@ -88,6 +88,8 @@ def prune_event(event):
if "age_ts" in event.unsigned:
allowed_fields["unsigned"]["age_ts"] = event.unsigned["age_ts"]
if "replaces_state" in event.unsigned:
allowed_fields["unsigned"]["replaces_state"] = event.unsigned["replaces_state"]
return type(event)(
allowed_fields,