Skip to content

Commit

Permalink
Merge branch 'main' into import_ror_updated_schema
Browse files Browse the repository at this point in the history
  • Loading branch information
amontenegro authored May 30, 2024
2 parents 00bc0d3 + e19a89a commit 7d990ae
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## v2.59.0 - 2024-05-09

[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.57.15...v2.59.0)

## v2.57.15 - 2024-05-08

[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.57.14...v2.57.15)

### Fix

- Return attempted resolution as false if resolver is disabled (#7029)

## 2.58.2 - 2024-04-28

[Full Changelog](https://github.com/ORCID/ORCID-Source/compare/v2.57.14...2.58.2)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public PIDResolutionResult resolve(String apiTypeName, String value) {
if (disableIsbnResolution) {
// If it is a valid format, but the resolver is disabled,
// return just the valid format
return new PIDResolutionResult(false, true, true, null);
return new PIDResolutionResult(false, false, true, null);
} else if (cache.isHttp303(normUrl)) {
return new PIDResolutionResult(true, true, true, normUrl);
} else {
Expand Down

0 comments on commit 7d990ae

Please sign in to comment.