improvement: better prev event fetching, perf improvements

This commit is contained in:
Timo Kösters
2021-08-17 16:06:09 +02:00
parent 75ba8bb565
commit bf7e019a68
4 changed files with 202 additions and 69 deletions

View File

@@ -733,7 +733,7 @@ pub async fn deactivate_route(
pub async fn third_party_route(
body: Ruma<get_contacts::Request>,
) -> ConduitResult<get_contacts::Response> {
let sender_user = body.sender_user.as_ref().expect("user is authenticated");
let _sender_user = body.sender_user.as_ref().expect("user is authenticated");
Ok(get_contacts::Response::new(Vec::new()).into())
}