xmpp: hello_bot: add catchall for Event

Maxime “pep” Buquet created

Masks HTTPUploadedFile which is useless here as we don't call the upload
method.

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>

Change summary

xmpp/examples/hello_bot.rs | 1 +
1 file changed, 1 insertion(+)

Detailed changes

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);
                 }
+                _ => (),
             }
         }
     }