mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-10 15:32:05 -03:30
fix: correcting additional legacy scope usage (#40644)
closes: #39063 Signed-off-by: Steve Hawkins <shawkins@redhat.com>
This commit is contained in:
parent
434a4eff9a
commit
c01736a9cd
@ -40,7 +40,7 @@ public class EmailValidationUtil {
|
||||
|
||||
|
||||
public static boolean isValidEmail(String value) {
|
||||
return isValidEmail(value, Config.scope("user-profile-declarative-user-profile").getInt(MAX_EMAIL_LOCAL_PART_LENGTH, MAX_LOCAL_PART_LENGTH));
|
||||
return isValidEmail(value, Config.scope("user-profile", "declarative-user-profile").getInt(MAX_EMAIL_LOCAL_PART_LENGTH, MAX_LOCAL_PART_LENGTH));
|
||||
}
|
||||
|
||||
public static boolean isValidEmail(String value, int maxEmailLocalPartLength) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user