Closed sbinet closed 3 years ago
hi,
trying to retrieve the list of contacts (served by hydroxide) I noticed the internal.Time value XML encoding/decoding roundtrip was broken:
hydroxide
internal.Time
time.RFC1123Z
net/http.ParseTime
[http.TimeFormat, time.RFC850, time.ANSIC]
Ooops. I guess we should probably just use http.TimeFormat. Need to be careful about:
http.TimeFormat
The time being formatted must be in UTC for Format to generate the correct format.
hi,
trying to retrieve the list of contacts (served by
hydroxide
) I noticed theinternal.Time
value XML encoding/decoding roundtrip was broken:time.RFC1123Z
net/http.ParseTime
that only has:[http.TimeFormat, time.RFC850, time.ANSIC]
as a list of possible time formats.