Commit 97b6f462 authored by yihua.huang's avatar yihua.huang

Bugfix: break loop in addTargetRequests #81

parent d1563da3
...@@ -94,7 +94,7 @@ public class Page { ...@@ -94,7 +94,7 @@ public class Page {
synchronized (targetRequests) { synchronized (targetRequests) {
for (String s : requests) { for (String s : requests) {
if (StringUtils.isBlank(s) || s.equals("#") || s.startsWith("javascript:")) { if (StringUtils.isBlank(s) || s.equals("#") || s.startsWith("javascript:")) {
break; continue;
} }
s = UrlUtils.canonicalizeUrl(s, url.toString()); s = UrlUtils.canonicalizeUrl(s, url.toString());
targetRequests.add(new Request(s)); targetRequests.add(new Request(s));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment