Merge branch 'hotfix/Hotfix-1' into develop
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
2025-11-11 15:14:54 +01:00

View File

@@ -317,6 +317,8 @@ public class SystemService {
} else { } else {
foundUser = userCacheService.retrieveUser(dbName, username, password, requestDataDTO.getApplication()); foundUser = userCacheService.retrieveUser(dbName, username, password, requestDataDTO.getApplication());
} }
if (foundUser != null && !profileDB.equalsIgnoreCase(foundUser.getProfileDb()))
foundUser.setProfileDb(profileDB);
} else { } else {
List<String> profiles = userCacheService.retrieveProfilesOfUser(username, password, requestDataDTO.getApplication()); List<String> profiles = userCacheService.retrieveProfilesOfUser(username, password, requestDataDTO.getApplication());