From 261cc2c7be4e892c05ad040bb12f661f0665c9c3 Mon Sep 17 00:00:00 2001 From: "hex (asiago)" Date: Sat, 13 Jul 2024 20:34:05 +0200 Subject: [PATCH] fix(date): typo in date/time format --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index bc88407..1b5428e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -23,7 +23,7 @@ use crate::logger::iwakulog::{LogLevel, log}; const ASSETS_DIR: &str = "./assets"; const GUEST_MESSAGES: &str = "./guests.json"; -const DATE_TIME_FORMAT: &str = "%Y-%m%d | %H:%M"; +const DATE_TIME_FORMAT: &str = "%Y-%m-%d | %H:%M"; #[derive(Serialize, Deserialize)] #[serde(crate = "rocket::serde")]