1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-12 01:29:12 +02:00

fix: early return from state res

This commit is contained in:
Timo Kösters 2021-08-04 15:19:50 +02:00
parent 9bb4c3cd01
commit ab7835dedb
No known key found for this signature in database
GPG key ID: 24DA7517711A2BA4

View file

@ -1267,10 +1267,10 @@ pub fn handle_incoming_pdu<'a>(
// 14. Use state resolution to find new room state
let new_room_state = if fork_states.is_empty() {
return Err("State is empty.".to_owned());
} else if fork_states.len() == 1 {
} else if fork_states.iter().skip(1).all(|f| &fork_states[0] == f) {
// There was only one state, so it has to be the room's current state (because that is
// always included)
debug!("Skipping stateres because there is no new state.");
warn!("Skipping stateres because there is no new state.");
fork_states[0]
.iter()
.map(|(k, pdu)| (k.clone(), pdu.event_id.clone()))