Skip to content

Commit

Permalink
Merge pull request #6901 from ORCID/EnableCaseComparisonOnWebsites
Browse files Browse the repository at this point in the history
URL comparison should be case sensitive
  • Loading branch information
amontenegro authored Oct 11, 2023
2 parents a2ae06d + a2eb3a2 commit 4252737
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 4252737

Please sign in to comment.