Fix start/end token swap left from dropped commits

This commit is contained in:
Devin Ragotzy 2020-07-30 07:50:09 -04:00
parent 99220565d4
commit c8d7d80eb2
2 changed files with 5 additions and 9 deletions

View file

@ -3243,8 +3243,8 @@ pub fn get_message_events_route(
.collect::<Vec<_>>();
Ok(get_message_events::Response {
start: start_token,
end: Some(body.from.clone()),
start: Some(body.from.clone()),
end: start_token,
chunk: events_before,
state: Vec::new(),
}