KEYCLOAK-16519 Fix typo in regex
The regex has a typo that prevents correct splitting of parameter values containing multiple OIDs.
This commit is contained in:
parent
e5232e0674
commit
8b7806dbb1
1 changed files with 1 additions and 1 deletions
|
@ -737,7 +737,7 @@ public class CertificateValidator {
|
|||
if (extendedKeyUsage == null || extendedKeyUsage.trim().length() == 0)
|
||||
return _parent;
|
||||
|
||||
String[] strs = extendedKeyUsage.split("[,;:]]");
|
||||
String[] strs = extendedKeyUsage.split("[,;:]");
|
||||
for (String str : strs) {
|
||||
_extendedKeyUsage.add(str.trim());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue