Skip to content

Commit 5accb5a

Browse files
committed
Formatting
1 parent fd53d6f commit 5accb5a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

client/src/main.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,11 @@ async fn reading_loop(
262262
}
263263
Ok(Some(ClientboundPacket::ImageMessage(im))) => {
264264
let time = chrono::Local.timestamp(im.time as i64, 0);
265-
println!("{} sent an image. ({})", im.sender, time.format("%H:%M %d-%m"))
265+
println!(
266+
"{} sent an image. ({})",
267+
im.sender,
268+
time.format("%H:%M %d-%m")
269+
)
266270
}
267271
Ok(Some(p)) => {
268272
println!("!!Unhandled packet: {:?}", p);

0 commit comments

Comments
 (0)