Open mpkondrashin opened 1 year ago
Just came across this error in my code. For now, I just check if it starts with http://
or https://
, but it would be good if this issue is addressed soon since this package is used in a lot of production environments. Judging from the commit history, I don't have a lot of faith.
I submitted a pull request for this
Bug Report
Summary
IsURL is accepting "http//" as legitimate URL prefix
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
Current behavior
govalidator.IsURL("http//abc.com")
returns true.How to reproduce
Expected behavior
IsURL is expected to return false for "http//abc.com"