Skip to content
Snippets Groups Projects
Commit ac0545f7 authored by 🥺's avatar 🥺 🏳️‍⚧️
Browse files

always set limited true on left timeline events in sync (for now)

parent 80f9536d
No related branches found
No related tags found
1 merge request!636many syncv3 optimisations; database, RocksDB, and misc performance improvements; refactoring and cleanup; fix private read receipt support; and some more bug fixes
......@@ -546,9 +546,9 @@ async fn handle_left_room(
events: Vec::new(),
},
timeline: Timeline {
limited: false,
limited: true, // TODO: support left timeline events so we dont need to set this to true
prev_batch: Some(next_batch_string.to_owned()),
events: Vec::new(),
events: Vec::new(), // and so we dont need to set this to empty vec
},
state: RoomState {
events: left_state_events,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment