diff --git a/xmpp/examples/hello_bot.rs b/xmpp/examples/hello_bot.rs index e3b8155d..500f7636 100644 --- a/xmpp/examples/hello_bot.rs +++ b/xmpp/examples/hello_bot.rs @@ -87,6 +87,7 @@ async fn main() -> Result<(), Option<()>> { Event::AvatarRetrieved(jid, path) => { println!("Received avatar for {} in {}.", jid, path); } + _ => (), } } }