From bd0cc62afac0e60e5e4c9efd05369ebd36e45f88 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Tue, 30 May 2023 10:14:06 -0700 Subject: [PATCH] Bug fix --- src/types.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/types.rs b/src/types.rs index 86c41e13..efad0021 100644 --- a/src/types.rs +++ b/src/types.rs @@ -141,10 +141,11 @@ impl TryInto for DateTime { type Error = (); fn try_into(self) -> Result { - Ok(NaiveDateTime::new( - NaiveDate::from_ymd_opt(self.year.into(), self.month.into(), self.day.into())?, - NaiveTime::from_hms_opt(self.hour.into(), self.minute.into(), self.second.into())?, - )) + let date = NaiveDate::from_ymd_opt(self.year.into(), self.month.into(), self.day.into()) + .ok_or(())?; + let time = NaiveTime::from_hms_opt(self.hour.into(), self.minute.into(), self.second.into()) + .ok_or(())?; + Ok(NaiveDateTime::new(date, time)) } }