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
this.urlMatchDoesNotHaveProtocolOrDot(urlMatch,protocolUrlMatch)||// At least one period ('.') must exist in the URL match for us to consider it an actual URL, *unless* it was a full protocol match (like 'http://localhost')
3804
3804
(this.urlMatchDoesNotHaveAtLeastOneWordChar(urlMatch,protocolUrlMatch)&&// At least one letter character must exist in the domain name after a protocol match. Ex: skip over something like "git:1.0"
3805
-
!this.isValidIpAddress(urlMatch)// Except if it's an IP address
3806
-
)
3805
+
!this.isValidIpAddress(urlMatch))||// Except if it's an IP address
0 commit comments