Skip to content

Commit 24b70d2

Browse files
Allow empty location as no location info (#12)
1 parent 8a73abf commit 24b70d2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

convert.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,15 @@ func FromString(s string) (Date, error) {
115115
// FromTime validates that a `time.Time{}` contains a date and converts it to a
116116
// `Date{}`.
117117
func FromTime(t time.Time) (Date, error) {
118+
zone, offset := t.Zone()
119+
120+
hasLocationInfo := !(t.Location() == time.UTC || (zone == "" && offset == 0))
121+
118122
if t.Hour() != 0 ||
119123
t.Minute() != 0 ||
120124
t.Second() != 0 ||
121125
t.Nanosecond() != 0 ||
122-
t.Location() != time.UTC {
126+
hasLocationInfo {
123127
return Date{}, fmt.Errorf("timestamp contains more than just date information; %s", t.Format(time.RFC3339Nano))
124128
}
125129

0 commit comments

Comments
 (0)