Bug fix
This commit is contained in:
parent
34945fe884
commit
bcd8fb27d2
1 changed files with 1 additions and 1 deletions
|
@ -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()?,
|
||||
|
|
Loading…
Add table
Reference in a new issue