Skip to content

Commit

Permalink
TH-121015: fixed the error that permist issued 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 5f47009 commit f11b29a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Server/SchoolBusAPI/Services/SchoolBusService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ private void AdjustSchoolBus(SchoolBus item)
}

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

Expand Down

0 comments on commit f11b29a

Please sign in to comment.