summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2019-11-08 11:42:55 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2019-11-08 11:44:22 +0000
commit6e282bc34391f0dd5b6d7729eea8583d0daf7347 (patch)
treef2ce2a21964e359735d296555297ea77b56cdca8
parent1.5.1 (diff)
downloadsynapse-6e282bc34391f0dd5b6d7729eea8583d0daf7347.tar.xz
Remove content from being sent for account data rdata stream
-rw-r--r--synapse/replication/tcp/streams/_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/replication/tcp/streams/_base.py b/synapse/replication/tcp/streams/_base.py
index f03111c259..8ae70e2b12 100644
--- a/synapse/replication/tcp/streams/_base.py
+++ b/synapse/replication/tcp/streams/_base.py
@@ -420,8 +420,8 @@ class AccountDataStream(Stream):
 
         results = list(room_results)
         results.extend(
-            (stream_id, user_id, None, account_data_type, content)
-            for stream_id, user_id, account_data_type, content in global_results
+            (stream_id, user_id, None, account_data_type)
+            for stream_id, user_id, account_data_type in global_results
         )
 
         return results