diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-03-09 08:58:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-09 08:58:25 -0400 |
commit | 06eb5cae08272c401a586991fc81f788825f910b (patch) | |
tree | babdb2ec370f203ad74119351c99d0e1a8ea843f /synapse/crypto | |
parent | Update routing of fallback auth in the worker docs. (#7048) (diff) | |
download | synapse-06eb5cae08272c401a586991fc81f788825f910b.tar.xz |
Remove special auth and redaction rules for aliases events in experimental room ver. (#7037)
Diffstat (limited to 'synapse/crypto')
-rw-r--r-- | synapse/crypto/event_signing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/crypto/event_signing.py b/synapse/crypto/event_signing.py index 5f733c1cf5..0422c43fab 100644 --- a/synapse/crypto/event_signing.py +++ b/synapse/crypto/event_signing.py @@ -140,7 +140,7 @@ def compute_event_signature( Returns: a dictionary in the same format of an event's signatures field. """ - redact_json = prune_event_dict(event_dict) + redact_json = prune_event_dict(room_version, event_dict) redact_json.pop("age_ts", None) redact_json.pop("unsigned", None) if logger.isEnabledFor(logging.DEBUG): |