Skip to content

Commit

Permalink
Update FindUrlAction.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bit4woo committed Aug 12, 2024
1 parent fa7daf3 commit e1d1f85
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/base/FindUrlAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ public static List<String> buildUrls(String baseurl, List<String> urlPath){
if (StringUtils.isBlank(baseurl)) {
continue;
}
url = url.toLowerCase();
if (url.startsWith("http://") || url.startsWith("https://")) {
if (url.toLowerCase().startsWith("http://") || url.toLowerCase().startsWith("https://")) {
result.add(url);
continue;
}
Expand Down

0 comments on commit e1d1f85

Please sign in to comment.