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')
3483
-
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"
3490
+
(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"
3491
+
!this.isValidIpAddress(urlMatch)// Except if it's an IP address
0 commit comments