diff --git a/matrix_sdk/src/sas.rs b/matrix_sdk/src/sas.rs index 6ff43c8e..5d8f1b81 100644 --- a/matrix_sdk/src/sas.rs +++ b/matrix_sdk/src/sas.rs @@ -64,7 +64,9 @@ impl Sas { OutgoingVerificationRequest::ToDevice(r) => { self.client.send_to_device(&r).await?; } - OutgoingVerificationRequest::InRoom(_) => todo!(), + OutgoingVerificationRequest::InRoom(r) => { + self.client.room_send_helper(&r).await?; + } } } Ok(())