Fix start/end token swap left from dropped commits
This commit is contained in:
parent
99220565d4
commit
c8d7d80eb2
2 changed files with 5 additions and 9 deletions
|
@ -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(),
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue