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
functionisProcessableURL(uri){if(/^(?:[a-z]+:)?\/\//i.test(uri)){returnfalse}try{// needs a base to parse properlyconsturl=newURL(uri,"https://example.com")if(url.hash){returnfalse}if(url.search){returnfalse}}catch{}// Ignorereturntrue}
These should be skipped for the same reason that url's with a protocol are skipped.
somewhat related to #536
The text was updated successfully, but these errors were encountered: