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
java.time.format.DateTimeParseException: Text '2021-12-27T22:00:00.000+0100:00' could not be parsed, unparsed text found at index 26
JS:
DateTimeFormatException: DateTimeParseException: Text '2021-12-27T22:00:00.000+0100:00' could not be parsed at index 23: 2021-12-27T22:00:00.000+0100:00, at index: 23
The text was updated successfully, but these errors were encountered:
The actual ISO-8601 is more subtle. There are two types of formats defined there: basic and extended ones. The basic formats are basically the extended formats with delimiters removed, like 20211227T220000+0400. So, the format that you are requesting is the basic format for the offsets. We consistently support the extended formats, but not the basic ones.
Closing this issue, as it was already reported, but we would appreciate it if, under the issue I'm closing this in favor of, you shared where you encountered this mixed "extended date-time/basic offset" format.
Uh oh!
There was an error while loading. Please reload this page.
Code which crashes:
It works properly with a colon inside the timezone offset
It should allow formats like
+01
+01:00
and+0100
but the latter is not workinghttps://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC
Exceptions thrown:
Java:
JS:
The text was updated successfully, but these errors were encountered: