From 7f282d17e6045443f27461b57dfa11155b68f771 Mon Sep 17 00:00:00 2001 From: Jorik Schellekens Date: Wed, 17 Jul 2019 11:52:27 +0100 Subject: [PATCH] Unbreak json parsing. --- synapse/handlers/devicemessage.py | 2 +- synapse/storage/devices.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/synapse/handlers/devicemessage.py b/synapse/handlers/devicemessage.py index 5963df4c1c..625b1b70af 100644 --- a/synapse/handlers/devicemessage.py +++ b/synapse/handlers/devicemessage.py @@ -118,7 +118,7 @@ class DeviceMessageHandler(object): "message_id": message_id, "context": json.dumps(context) if opentracing.whitelisted_homeserver(destination) - else "", + else "{}", } opentracing.log_kv({"local_messages": local_messages}) diff --git a/synapse/storage/devices.py b/synapse/storage/devices.py index a17d7ec6a7..e985a1c665 100644 --- a/synapse/storage/devices.py +++ b/synapse/storage/devices.py @@ -222,7 +222,7 @@ class DeviceWorkerStore(SQLBaseStore): "stream_id": stream_id, "context": query_map[(user_id, device_id)][1] if opentracing.whitelisted_homeserver(destination) - else "", + else "{}", } prev_id = stream_id @@ -839,7 +839,7 @@ class DeviceStore(DeviceWorkerStore, BackgroundUpdateStore): "ts": now, "context": json.dumps(context) if opentracing.whitelisted_homeserver(destination) - else "", + else "{}", } for destination in hosts for device_id in device_ids