ignore stuff starting with period #693
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
Howdy! You probably could add the base url to the regex and be ok. |
Beta Was this translation helpful? Give feedback.
-
👍 I'll need to actually look at the code it seems 😂 |
Beta Was this translation helpful? Give feedback.
-
Ok, this should behave the way you're wanting
|
Beta Was this translation helpful? Give feedback.
Ok, this should behave the way you're wanting
--dont-scan
does double duty. When it's an absolute/valid url thaturl::Url::parse
can successfully ingest, then the comparison is done as aUrl
->Url
. On the other hand, ifurl::Url::parse
fails, we parse what's given todont-scan
as a fullblown regex. So, when we were trying things with http... we weren't hitting the regex branch.