Bugfix: break loop in addTargetRequests #81
parent
d1563da33b
commit
97b6f46280
|
@ -94,7 +94,7 @@ public class Page {
|
|||
synchronized (targetRequests) {
|
||||
for (String s : requests) {
|
||||
if (StringUtils.isBlank(s) || s.equals("#") || s.startsWith("javascript:")) {
|
||||
break;
|
||||
continue;
|
||||
}
|
||||
s = UrlUtils.canonicalizeUrl(s, url.toString());
|
||||
targetRequests.add(new Request(s));
|
||||
|
|
Loading…
Reference in New Issue