Removed weird duplicate RoomJoined at the end of the method.

This commit is contained in:
Werner Kroneman 2023-12-08 20:34:44 +01:00
parent d2a5634859
commit ecd0be4aad

View file

@ -263,7 +263,6 @@ impl Agent {
lang: impl Into<String>, lang: impl Into<String>,
status: impl Into<String>, status: impl Into<String>,
) { ) {
// XEP-0045 specifies that, to leave a room, the client must send a presence stanza // XEP-0045 specifies that, to leave a room, the client must send a presence stanza
// with type="unavailable". // with type="unavailable".
let mut presence = Presence::new(PresenceType::Unavailable).with_to( let mut presence = Presence::new(PresenceType::Unavailable).with_to(
@ -496,8 +495,6 @@ impl Agent {
} }
_ => unimplemented!("Presence type {:?}", presence.type_), // TODO: What to do here? _ => unimplemented!("Presence type {:?}", presence.type_), // TODO: What to do here?
} }
events.push(Event::RoomJoined(from.clone()));
} }
} }