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 was archived by the owner on Apr 12, 2024. It is now read-only.
In v1.4.8 the validation scheme for url inputs was changed, causing valid URLs with semicolons, which previously passed the filter, to become invalid
Our application handles the generation of long urls with messy query strings to be used in advertising, so it's important to us that esoteric characters remain supported. Semicolons are valid URL characters
You can reproduce the error at the angular code example for a url input, try entering
In v1.4.8 the validation scheme for
urlinputs was changed, causing valid URLs with semicolons, which previously passed the filter, to become invalidOur application handles the generation of long urls with messy query strings to be used in advertising, so it's important to us that esoteric characters remain supported. Semicolons are valid URL characters
You can reproduce the error at the angular code example for a url input, try entering
The fix is simply to add a semicolon to the last chunk of the validation regex here