xmpp: hello_bot: add catchall for Event

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

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2021-12-28 21:56:20 +01:00
parent c8d7602bd4
commit a15a028383

View file

@ -87,6 +87,7 @@ async fn main() -> Result<(), Option<()>> {
Event::AvatarRetrieved(jid, path) => {
println!("Received avatar for {} in {}.", jid, path);
}
_ => (),
}
}
}