cargo fmt

This commit is contained in:
Timo Kösters 2022-10-11 18:10:51 +02:00
parent d1e5acd7b3
commit 8105c5cc60
No known key found for this signature in database
GPG key ID: 24DA7517711A2BA4
2 changed files with 12 additions and 15 deletions

View file

@ -1149,18 +1149,15 @@ pub async fn get_room_state_route(
Ok(get_room_state::v1::Response {
auth_chain: auth_chain_ids
.filter_map(|id| {
match services()
.rooms
.timeline
.get_pdu_json(&id).ok()? {
Some(json) => Some(PduEvent::convert_to_outgoing_federation_event(json)),
None => {
error!("Could not find event json for {id} in db.");
None
}
.filter_map(
|id| match services().rooms.timeline.get_pdu_json(&id).ok()? {
Some(json) => Some(PduEvent::convert_to_outgoing_federation_event(json)),
None => {
error!("Could not find event json for {id} in db.");
None
}
})
},
)
.collect(),
pdus,
})