diff options
author | Denis <dakariakin@gmail.com> | 2022-09-20 10:44:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-20 09:44:38 +0100 |
commit | c802ef14119b21cfdf8f5a9c246b695c98c0f718 (patch) | |
tree | 20deb7b9c36ce1a18245c016e549935c1e1d9bc7 /synapse/federation | |
parent | Add support to purge rows from MSC2716 and other tables when purging a room (... (diff) | |
download | synapse-c802ef14119b21cfdf8f5a9c246b695c98c0f718.tar.xz |
Don't include redundant prev_state in new events (#13791)
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/federation_client.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/federation/federation_client.py b/synapse/federation/federation_client.py index 4a4289ee7c..464672a3da 100644 --- a/synapse/federation/federation_client.py +++ b/synapse/federation/federation_client.py @@ -906,9 +906,6 @@ class FederationClient(FederationBase): # The protoevent received over the JSON wire may not have all # the required fields. Lets just gloss over that because # there's some we never care about - if "prev_state" not in pdu_dict: - pdu_dict["prev_state"] = [] - ev = builder.create_local_event_from_event_dict( self._clock, self.hostname, |