From bcd8fb27d28575525f9a6d7e78dde9b0c9c33ea5 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 1 Jun 2023 14:27:55 -0700 Subject: [PATCH] Bug fix --- src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.rs b/src/types.rs index 502f7262..d9ced849 100644 --- a/src/types.rs +++ b/src/types.rs @@ -122,7 +122,7 @@ impl TryFrom for DateTime { fn try_from(value: NaiveDateTime) -> Result { DateTime::from_date_and_time( value.year().try_into()?, - u8::from(value.month()).into(), + value.month().try_into()?, value.day().try_into()?, value.hour().try_into()?, value.minute().try_into()?,