summary refs log tree commit diff
path: root/synapse/replication/http/device.py
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/replication/http/device.py')
-rw-r--r--synapse/replication/http/device.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/http/device.py b/synapse/replication/http/device.py

index 4855ba098f..605de028a0 100644 --- a/synapse/replication/http/device.py +++ b/synapse/replication/http/device.py
@@ -55,7 +55,7 @@ class CheckDeviceRegisteredServlet(ReplicationEndpoint): try: device_id = yield self.device_handler.check_device_registered(user_id, device_id) except Exception as e: - defer.returnValue((400, str(e)) + defer.returnValue((400, str(e))) defer.returnValue((200, {"device_id": device_id}))