Make sure we don't persist the 'pruned' key

pull/4/merge
Erik Johnston 10 years ago
parent 78af6bbb98
commit b99f6eb904
  1. 2
      synapse/storage/__init__.py

@ -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…
Cancel
Save