summary refs log tree commit diff
path: root/synapse/rest/client/v2_alpha/sendtodevice.py
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2016-09-02 11:24:30 +0100
committerGitHub <noreply@github.com>2016-09-02 11:24:30 +0100
commit2aa39db681ca7f9d5d721ed52d354c1e66583258 (patch)
treee2cb7b2327f8de1f5aec03d0f91b461e09940541 /synapse/rest/client/v2_alpha/sendtodevice.py
parentMerge pull request #1061 from matrix-org/erikj/linearize_resolution (diff)
parentMerge branch 'develop' into markjh/direct_to_device_synchrotron (diff)
downloadsynapse-2aa39db681ca7f9d5d721ed52d354c1e66583258.tar.xz
Merge pull request #1062 from matrix-org/markjh/direct_to_device_synchrotron
Fix up the calls to the notifier for device messages
Diffstat (limited to 'synapse/rest/client/v2_alpha/sendtodevice.py')
-rw-r--r--synapse/rest/client/v2_alpha/sendtodevice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/sendtodevice.py b/synapse/rest/client/v2_alpha/sendtodevice.py

index 7c0991ca55..9c10a99acf 100644 --- a/synapse/rest/client/v2_alpha/sendtodevice.py +++ b/synapse/rest/client/v2_alpha/sendtodevice.py
@@ -78,7 +78,7 @@ class SendToDeviceRestServlet(servlet.RestServlet): stream_id = yield self.store.add_messages_to_device_inbox(local_messages) self.notifier.on_new_event( - "to_device", stream_id, users=local_messages.keys() + "to_device_key", stream_id, users=local_messages.keys() ) response = (200, {})