Skip to content

Commit

Permalink
#5229 fix bundle reference
Browse files Browse the repository at this point in the history
  • Loading branch information
sekmiller committed Nov 29, 2018
1 parent a2f703d commit b1233d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/harvard/iq/dataverse/api/Access.java
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ public Response allowAccessRequest(@PathParam("id") String datasetToAllowAccessI

String text = allowRequest ? BundleUtil.getStringFromBundle("access.api.allowRequests.allows") : BundleUtil.getStringFromBundle("access.api.allowRequests.disallows");
List<String> args = Arrays.asList(dataset.getDisplayName(), text);
return ok(BundleUtil.getStringFromBundle("access.api.fileAccess.success", args));
return ok(BundleUtil.getStringFromBundle("access.api.allowRequests.success", args));

}

Expand Down

0 comments on commit b1233d5

Please sign in to comment.