summary refs log tree commit diff
path: root/synapse/events
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-10-30 11:15:37 +0000
committerMark Haines <mark.haines@matrix.org>2015-10-30 11:15:37 +0000
commitd58edd98e91ad041a31a96980002c2d8899a2580 (patch)
tree03799a7b282f13a68e8c9f6e53524594667ac77e /synapse/events
parentDon't mark newly joined room timelines as limited in an incremental sync (diff)
downloadsynapse-d58edd98e91ad041a31a96980002c2d8899a2580.tar.xz
Update the other place check_joined_room is called
Diffstat (limited to 'synapse/events')
-rw-r--r--synapse/events/utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/events/utils.py b/synapse/events/utils.py
index 48548f8c40..9989b76591 100644
--- a/synapse/events/utils.py
+++ b/synapse/events/utils.py
@@ -154,7 +154,8 @@ def serialize_event(e, time_now_ms, as_client_event=True,
 
     if "redacted_because" in e.unsigned:
         d["unsigned"]["redacted_because"] = serialize_event(
-            e.unsigned["redacted_because"], time_now_ms
+            e.unsigned["redacted_because"], time_now_ms,
+            event_format=event_format
         )
 
     if token_id is not None: