mirror of
https://mau.dev/maunium/synapse.git
synced 2025-03-05 21:50:20 +01:00
Make sure we don't persist the 'pruned' key
This commit is contained in:
parent
78af6bbb98
commit
b99f6eb904
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ class DataStore(RoomMemberStore, RoomStore,
|
|||
unrec = {
|
||||
k: v
|
||||
for k, v in event.get_full_dict().items()
|
||||
if k not in vals.keys() and k is not "deleted"
|
||||
if k not in vals.keys() and k not in ["deleted", "pruned"]
|
||||
}
|
||||
vals["unrecognized_keys"] = json.dumps(unrec)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue