Skip to content

Commit

Permalink
Add group name attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
utas-raymondng committed Mar 15, 2024
1 parent 82f1c6d commit d6ce4fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ String mapDatasetOwner(MDMetadataType source) {
String mapGeoNetworkGroup(MDMetadataType source) {
try {
String group = geoNetworkService.findGroupById(mapUUID(source));
return group != null ? group : null;
return group != null ? group.toLowerCase() : null;
}
catch (IOException e) {
return null;
Expand Down

0 comments on commit d6ce4fb

Please sign in to comment.