Skip to content

Commit

Permalink
TH-121015: fixed the error that next inspection date for schoolbut is…
Browse files Browse the repository at this point in the history
… still utc format
  • Loading branch information
bcgov-brwang committed Sep 26, 2024
1 parent 415d536 commit 5f47009
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Server/SchoolBusAPI/Services/SchoolBusService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,8 @@ private void AdjustSchoolBus(SchoolBus item)
item.CCWData = null;
}
}

item.NextInspectionDate = DateTime.SpecifyKind(item.NextInspectionDate.GetValueOrDefault(), DateTimeKind.Unspecified);
}
}

Expand Down

0 comments on commit 5f47009

Please sign in to comment.