Skip to content

Commit

Permalink
URL comparison should be case sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro committed Oct 4, 2023
1 parent 9779efd commit 5825e7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public boolean compare(Object obj) {
return false;
WebsiteForm other = (WebsiteForm) obj;

if (!WorkForm.compareTexts(url, other.getUrl(), true))
if (!WorkForm.compareTexts(url, other.getUrl(), false))
return false;
if (!WorkForm.compareStrings(urlName, other.getUrlName()))
return false;
Expand Down

0 comments on commit 5825e7b

Please sign in to comment.