You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 1, 2021. It is now read-only.
returnedError(Swift.DecodingError.dataCorrupted(Swift.DecodingError.Context(codingPath: ["profiles", _JSONKey(stringValue: "Index 0", intValue: 0), "updated_time"], debugDescription: "Date string does not match format expected by formatter.", underlyingError: nil)))
The text was updated successfully, but these errors were encountered:
ok... I read the doc and I get I need to set the date format correctly
// In JSON format, the Timestamp type is encoded as a string in the
// [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
// format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
// where {year} is always expressed using four digits while {month}, {day},
// {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
// seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
// are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
// is required, though only UTC (as indicated by "Z") is presently supported.
//
// For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
// 01:30 UTC on January 15, 2017.
Using the swift4 codegen
google.protobuf.Timestamp updated_time = 4;
will incorrectly be interpreted as a date field.
The text was updated successfully, but these errors were encountered: