diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-11 15:44:28 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-11 15:44:28 +0000 |
commit | ddb816cf60ca1b0c0f9bfab5df233a010ac309a3 (patch) | |
tree | c3db58914617f2375c603f6c5d1eb8ca5d2600b2 /synapse/storage | |
parent | Blunty replace json with simplejson (diff) | |
download | synapse-ddb816cf60ca1b0c0f9bfab5df233a010ac309a3.tar.xz |
Don't unfreeze when using FreezeEvent.get_dict, as we are using a JSONEncoder that understands FrozenDict
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/__init__.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index 924ea89035..94603ef826 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -298,12 +298,16 @@ class DataStore(RoomMemberStore, RoomStore, or_replace=True, ) + content = encode_canonical_json( + event.content + ).decode("UTF-8") + vals = { "topological_ordering": event.depth, "event_id": event.event_id, "type": event.type, "room_id": event.room_id, - "content": json.dumps(event.get_dict()["content"]), + "content": content, "processed": True, "outlier": outlier, "depth": event.depth, @@ -323,7 +327,10 @@ class DataStore(RoomMemberStore, RoomStore, "prev_events", ] } - vals["unrecognized_keys"] = json.dumps(unrec) + + vals["unrecognized_keys"] = encode_canonical_json( + unrec + ).decode("UTF-8") try: self._simple_insert_txn( |