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
\. is treated by JavaScript as ., resulting in "any character" match, rather than "dot".
A simple fix would be to replace \. with [.] which is agnostic of escapes. This also needs a test.
The text was updated successfully, but these errors were encountered:
There's an error in regex used to parse iso8601:
node-xmlrpc/lib/date_formatter.js
Line 32 in d9c88c4
\.
is treated by JavaScript as.
, resulting in "any character" match, rather than "dot".A simple fix would be to replace
\.
with[.]
which is agnostic of escapes. This also needs a test.The text was updated successfully, but these errors were encountered: