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
The regexp used by the "uri" format validation doesn't really validate that the string is a proper URI, i.e there is a chance passing a validated string to the java URI class will result into an exception
An example invalid URI that passes the validation is https://gitlab.com/?args=invalid|value
Should the regexp be more complex ? Should the validation be made with the java URI class (then catching the exception to validate) ?