mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
Removed weird duplicate RoomJoined at the end of the method.
This commit is contained in:
parent
d2a5634859
commit
ecd0be4aad
1 changed files with 0 additions and 3 deletions
|
@ -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()));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue