diff --git a/xmpp/src/lib.rs b/xmpp/src/lib.rs index f916a2ffb7653e54c086c151c9c80999de37121e..d3913575e842278a5dd804aba3592d6bc5daac2c 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())); } }