diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-21 09:36:07 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-21 09:36:07 +0100 |
commit | 1f7642efa9f7165706593d745aab467b7fdddd67 (patch) | |
tree | ea6656514641ee822fc74cef3e542ad8df69bdc1 /synapse/storage/events.py | |
parent | Add missing param in store.get_state_groups invocation (diff) | |
download | synapse-1f7642efa9f7165706593d745aab467b7fdddd67.tar.xz |
Fix bug where we didn't correctly serialize the redacted_because key over federation
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r-- | synapse/storage/events.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index 5b64918024..e3eabab13d 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -811,6 +811,8 @@ class EventsStore(SQLBaseStore): ) if because: + # It's fine to do add the event directly, since get_pdu_json + # will serialise this field correctly ev.unsigned["redacted_because"] = because if get_prev_content and "replaces_state" in ev.unsigned: |