Skip to content

Commit

Permalink
Add to title-initial non-sorting strings (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed Jan 30, 2024
1 parent 94b98b0 commit e46b714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/nwbib/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ public static Promise<Result> journals() {
}

private static String sortValue(Map<String, String> map, final String key) {
String value = map.get(key).replaceAll("^(Der|Die|Das|De)\\s", "");
String value = map.get(key).replaceAll("^(Der|Die|Das|De|Dä)\\s", "");
return Arrays.asList(value.split("\\s")).toString();
}

Expand Down

0 comments on commit e46b714

Please sign in to comment.