Skip to content

Commit

Permalink
enforce date conversion on original datetime in UTC as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebely3ll committed Aug 12, 2024
1 parent a47997a commit b7a0fdc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/importer/legalhold_detail.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ func convertDateTimeFormat(tz string, input string) (string, error) {
return "", fmt.Errorf("empty datetime")
}

if tz == "UTC" {
return input, nil
}
// if tz == "UTC" {
// return input, nil
// }

loc, err := time.LoadLocation(tz)
if err != nil {
Expand Down

0 comments on commit b7a0fdc

Please sign in to comment.