diff --git a/xmpp/src/lib.rs b/xmpp/src/lib.rs index f916a2f..d391357 100644 --- a/xmpp/src/lib.rs +++ b/xmpp/src/lib.rs @@ -263,7 +263,6 @@ impl Agent { lang: impl Into, status: impl Into, ) { - // XEP-0045 specifies that, to leave a room, the client must send a presence stanza // with type="unavailable". 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? } - - events.push(Event::RoomJoined(from.clone())); } }