This commit is contained in:
Chris Hennick 2023-06-01 14:27:55 -07:00
parent 34945fe884
commit bcd8fb27d2
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -122,7 +122,7 @@ impl TryFrom<NaiveDateTime> for DateTime {
fn try_from(value: NaiveDateTime) -> Result<Self, Self::Error> {
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()?,