Skip to content

Commit

Permalink
Fix wrong language filter in RenameMetadataAttribute
Browse files Browse the repository at this point in the history
  • Loading branch information
abelgomez committed May 16, 2024
1 parent 1b31a67 commit f5c00b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public int perform(DSpaceObject dso) throws IOException {

String source = taskProperty(CONF_SOURCE);
String target = taskProperty(CONF_TARGET);
String language = taskProperty(CONF_LANGUAGE, null);
String language = taskProperty(CONF_LANGUAGE, Item.ANY);

if (StringUtils.isEmpty(source)) {
result = "No source metadata attribute specified!";
Expand Down

0 comments on commit f5c00b6

Please sign in to comment.