Fix mapType in Authorization Service to handle extra '.'

This commit is contained in:
Konstantinos Triantafyllou 2024-01-11 18:39:30 +02:00
parent b84f29c803
commit e91a0e6af8
1 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,9 @@ public class AuthorizationService {
} else if (type.equals("ri") && communityMap) {
type = "community";
}
while (type.contains(".")) {
type = type.replace(".", "_");
}
return type;
}