mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
Revert "tokio-xmpp: rustfmt pass in examples"
This reverts commit 46fdd9cdfa
.
This commit is contained in:
parent
46fdd9cdfa
commit
a39a2330aa
1 changed files with 1 additions and 4 deletions
|
@ -230,10 +230,7 @@ fn handle_iq_result(pubsub: PubSub, from: &Jid) {
|
||||||
fn save_avatar(from: &Jid, id: String, data: &[u8]) -> io::Result<()> {
|
fn save_avatar(from: &Jid, id: String, data: &[u8]) -> io::Result<()> {
|
||||||
let directory = format!("data/{}", from);
|
let directory = format!("data/{}", from);
|
||||||
let filename = format!("data/{}/{}", from, id);
|
let filename = format!("data/{}/{}", from, id);
|
||||||
println!(
|
println!("Saving avatar from [1m{}[0m to [4m{}[0m.", from, filename);
|
||||||
"Saving avatar from [1m{}[0m to [4m{}[0m.",
|
|
||||||
from, filename
|
|
||||||
);
|
|
||||||
create_dir_all(directory)?;
|
create_dir_all(directory)?;
|
||||||
let mut file = File::create(filename)?;
|
let mut file = File::create(filename)?;
|
||||||
file.write_all(data)
|
file.write_all(data)
|
||||||
|
|
Loading…
Reference in a new issue