Skip to content

Commit

Permalink
add null check to avoid any remaining cases of 9954
Browse files Browse the repository at this point in the history
  • Loading branch information
qqmyers committed Sep 25, 2023
1 parent 3a4d8f9 commit 869d242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/harvard/iq/dataverse/DatasetPage.java
Original file line number Diff line number Diff line change
Expand Up @@ -6144,7 +6144,7 @@ public String getWebloaderUrlForDataset(Dataset d) {
String signpostingLinkHeader = null;

public String getSignpostingLinkHeader() {
if (!workingVersion.isReleased()) {
if ((workingVersion==null) || (!workingVersion.isReleased())) {
return null;
}
if (signpostingLinkHeader == null) {
Expand Down

0 comments on commit 869d242

Please sign in to comment.