Merge pull request #103 from vrockai/KEYCLOAK-151
KEYCLOAK-151 fix for account app lookup
This commit is contained in:
commit
051017abc8
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ public class RealmManager {
|
|||
}
|
||||
|
||||
private void enableAccountManagement(RealmModel realm) {
|
||||
ApplicationModel application = realm.getApplicationById(Constants.ACCOUNT_APPLICATION);
|
||||
ApplicationModel application = realm.getApplicationNameMap().get(Constants.ACCOUNT_APPLICATION);
|
||||
if (application == null) {
|
||||
application = realm.addApplication(Constants.ACCOUNT_APPLICATION);
|
||||
application.addDefaultRole(Constants.ACCOUNT_PROFILE_ROLE);
|
||||
|
|
Loading…
Reference in a new issue