mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
URL renaming: Room state keys now use the format /rooms/$roomid/state/$event_type/$state_key. cmdclient: Fixed double urlencoding on leave command. Stream from the END since START now produces an error on /events.
This commit is contained in:
parent
5796232cb1
commit
b01aeac842
@ -61,7 +61,7 @@ class SynapseCmd(cmd.Cmd):
|
|||||||
"send_delivery_receipts": "on"
|
"send_delivery_receipts": "on"
|
||||||
}
|
}
|
||||||
self.path_prefix = "/matrix/client/api/v1"
|
self.path_prefix = "/matrix/client/api/v1"
|
||||||
self.event_stream_token = "START"
|
self.event_stream_token = "END"
|
||||||
self.prompt = ">>> "
|
self.prompt = ">>> "
|
||||||
|
|
||||||
def do_EOF(self, line): # allows CTRL+D quitting
|
def do_EOF(self, line): # allows CTRL+D quitting
|
||||||
@ -402,7 +402,7 @@ class SynapseCmd(cmd.Cmd):
|
|||||||
"""Leaves a room: "leave <roomid>" """
|
"""Leaves a room: "leave <roomid>" """
|
||||||
try:
|
try:
|
||||||
args = self._parse(line, ["roomid"], force_keys=True)
|
args = self._parse(line, ["roomid"], force_keys=True)
|
||||||
self._do_membership_change(urllib.quote(args["roomid"]), "leave", self._usr())
|
self._do_membership_change(args["roomid"], "leave", self._usr())
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print e
|
print e
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user