improve tld: query modifier filter pattern (to prevent tld:net accepting www.abcinet.org)

pull/1/head
reger 12 years ago
parent 02fe8b43ba
commit a67a4b7d86

@ -226,7 +226,7 @@ public final class QueryParams {
this.urlMask_isCatchall = false;
}
if (tld != null) {
this.urlMask = Pattern.compile(".*" + tld + ".*");
this.urlMask = Pattern.compile(".*\\." + tld + ".*");
this.urlMask_isCatchall = false;
}
if (modifier.filetype != null) {

Loading…
Cancel
Save