mstrewe commented on code in PR #1456: URL: https://github.com/apache/incubator-stormcrawler/pull/1456#discussion_r1931114610
########## core/src/main/java/org/apache/stormcrawler/filtering/basic/BasicURLNormalizer.java: ########## @@ -145,7 +145,7 @@ public class BasicURLNormalizer extends URLFilter { // properly encode characters in path/file using percent-encoding String file2 = unescapePath(file); file2 = escapePath(file2); - if (!file.equals(file2)) { + if (!file.toLowerCase().equals(file2.toLowerCase())) { Review Comment: Yes. Thanks for the tip. It cleaner -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@stormcrawler.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org