Fix map_or calling function.
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
25164e030d
commit
95e49d3cb8
2 changed files with 23 additions and 21 deletions
|
|
@ -132,7 +132,7 @@ pub(crate) async fn get_context_route(
|
|||
let state_at = events_after
|
||||
.last()
|
||||
.map(ref_at!(1))
|
||||
.map_or(body.event_id.as_ref(), |pdu| pdu.event_id.as_ref());
|
||||
.map_or_else(|| body.event_id.as_ref(), |pdu| pdu.event_id.as_ref());
|
||||
|
||||
let state_ids = services
|
||||
.rooms
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue