xmpp: *Message events now include an optional id

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2023-02-26 20:09:20 +01:00
commit c759516508
No known key found for this signature in database
GPG key ID: DEDA74AEECA9D0F2
2 changed files with 17 additions and 7 deletions

View file

@ -51,7 +51,7 @@ async fn main() -> Result<(), Option<()>> {
Event::ContactChanged(contact) => {
println!("Contact {} changed.", contact.jid);
}
Event::ChatMessage(jid, body) => {
Event::ChatMessage(_id, jid, body) => {
println!("Message from {}: {}", jid, body.0);
}
Event::JoinRoom(jid, conference) => {
@ -81,7 +81,7 @@ async fn main() -> Result<(), Option<()>> {
Event::RoomLeft(jid) => {
println!("Left room {}.", jid);
}
Event::RoomMessage(jid, nick, body) => {
Event::RoomMessage(_id, jid, nick, body) => {
println!("Message in room {} from {}: {}", jid, nick, body.0);
}
Event::AvatarRetrieved(jid, path) => {