summary refs log tree commit diff
path: root/cmdclient
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2014-08-26 17:21:48 +0100
committerKegan Dougal <kegan@matrix.org>2014-08-26 17:21:48 +0100
commit5a93bfe1f03bf225bcf3b14089faefa3b5715499 (patch)
tree8fdd0868de29108aa3de5a9bb524b516c343e326 /cmdclient
parentAdded RoomSendEventRestServlet to send generic non-state events. It even appe... (diff)
downloadsynapse-5a93bfe1f03bf225bcf3b14089faefa3b5715499.tar.xz
Removed MessageRestServlet, use RoomSendEventRestServlet instead. Updated cmdclient, tests and webclient. All appears to work.
Diffstat (limited to 'cmdclient')
-rwxr-xr-xcmdclient/console.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/cmdclient/console.py b/cmdclient/console.py
index f997b7539c..4cb604e796 100755
--- a/cmdclient/console.py
+++ b/cmdclient/console.py
@@ -409,10 +409,9 @@ class SynapseCmd(cmd.Cmd):
     def do_send(self, line):
         """Sends a message. "send <roomid> <body>" """
         args = self._parse(line, ["roomid", "body"])
-        msg_id = "m%s" % int(time.time())
-        path = "/rooms/%s/messages/%s/%s" % (urllib.quote(args["roomid"]),
-                                             self._usr(),
-                                             msg_id)
+        txn_id = "txn%s" % int(time.time())
+        path = "/rooms/%s/send/m.room.message/%s" % (urllib.quote(args["roomid"]),
+                                             txn_id)
         body_json = {
             "msgtype": "m.text",
             "body": args["body"]