[Client] Send request cancellation unencrypted

This commit is contained in:
Christian Pauly 2020-03-24 09:13:39 +01:00
parent 992cee1d0d
commit 69ee4ffd08

View file

@ -1340,14 +1340,16 @@ class Client {
); );
if (toDeviceEvent.type == "m.forwarded_room_key") { if (toDeviceEvent.type == "m.forwarded_room_key") {
sendToDevice( sendToDevice(
[], [],
"m.room_key_request", "m.room_key_request",
{ {
"action": "request_cancellation", "action": "request_cancellation",
"request_id": base64.encode( "request_id": base64
utf8.encode(toDeviceEvent.content["room_id"])), .encode(utf8.encode(toDeviceEvent.content["room_id"])),
"requesting_device_id": room.client.deviceID, "requesting_device_id": room.client.deviceID,
}); },
encrypted: false,
);
} }
} }
} }