diff --git a/xmpp/examples/hello_bot.rs b/xmpp/examples/hello_bot.rs index e3b8155d8571d5cc0bbb048fa4366819928e3333..500f76362d7e0f6d0d060c67b84904d7fe8c467b 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); } + _ => (), } } }