We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a73abf commit 24b70d2Copy full SHA for 24b70d2
convert.go
@@ -115,11 +115,15 @@ func FromString(s string) (Date, error) {
115
// FromTime validates that a `time.Time{}` contains a date and converts it to a
116
// `Date{}`.
117
func FromTime(t time.Time) (Date, error) {
118
+ zone, offset := t.Zone()
119
+
120
+ hasLocationInfo := !(t.Location() == time.UTC || (zone == "" && offset == 0))
121
122
if t.Hour() != 0 ||
123
t.Minute() != 0 ||
124
t.Second() != 0 ||
125
t.Nanosecond() != 0 ||
- t.Location() != time.UTC {
126
+ hasLocationInfo {
127
return Date{}, fmt.Errorf("timestamp contains more than just date information; %s", t.Format(time.RFC3339Nano))
128
}
129
0 commit comments