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()?,