We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd53d6f commit 5accb5aCopy full SHA for 5accb5a
client/src/main.rs
@@ -262,7 +262,11 @@ async fn reading_loop(
262
}
263
Ok(Some(ClientboundPacket::ImageMessage(im))) => {
264
let time = chrono::Local.timestamp(im.time as i64, 0);
265
- println!("{} sent an image. ({})", im.sender, time.format("%H:%M %d-%m"))
+ println!(
266
+ "{} sent an image. ({})",
267
+ im.sender,
268
+ time.format("%H:%M %d-%m")
269
+ )
270
271
Ok(Some(p)) => {
272
println!("!!Unhandled packet: {:?}", p);
0 commit comments