summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2015-10-16 13:41:31 +0100
committerMark Haines <mjark@negativecurvature.net>2015-10-16 13:41:31 +0100
commit5df54de801a83c304b932511581c6d4d394469dc (patch)
treea7c6c6f25b48e35b7d3e38d5030e23df260cab80
parentMerge pull request #305 from matrix-org/markjh/v2_sync_api (diff)
parentEncode the filter JSON as UTF-8 before storing in the database. (diff)
downloadsynapse-5df54de801a83c304b932511581c6d4d394469dc.tar.xz
Merge pull request #308 from matrix-org/markjh/v2_filter_encoding
Encode the filter JSON as UTF-8 before storing in the database.
-rw-r--r--synapse/storage/filtering.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/filtering.py b/synapse/storage/filtering.py

index 8800116570..700da8d8c3 100644 --- a/synapse/storage/filtering.py +++ b/synapse/storage/filtering.py
@@ -34,10 +34,10 @@ class FilteringStore(SQLBaseStore): desc="get_user_filter", ) - defer.returnValue(json.loads(def_json)) + defer.returnValue(json.loads(def_json.decode("utf-8"))) def add_user_filter(self, user_localpart, user_filter): - def_json = json.dumps(user_filter) + def_json = json.dumps(user_filter).encode("utf-8") # Need an atomic transaction to SELECT the maximal ID so far then # INSERT a new one