Gravity Domain Filtering Different

This is a regression of

because

is considered an invalid pattern in the following code:

			// Domain must not contain a hyphen immediately before a
			// dot or two consecutive dots
			if(domain[i] == '.' && (domain[i-1] == '-' || domain[i-1] == '.'))
				return false;

This needs to be relaxed, see the following proposed bugfix PR

1 Like