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
Basically, they were splitting the string on every single colon and returning the second array item. So stuff like URLs got split multiple times. That regex split makes sure it splits only the first colon.
Google gives back a URL like so:
'URL:https\\://plus.google.com/u/0/38497128973128932',
The colon has been escaped with a double backslash. Once it has been parsed, the output is simply:
This means that the colon was not escaped at all.
If you are willing to accept, a pull request can be made to fix this.
The text was updated successfully, but these errors were encountered: