Browse Source
fix: typo in saml auth module
pull/4015/merge
v2.5.281
Nicolas Giard
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
server/modules/authentication/saml/authentication.js
|
|
@ -14,7 +14,7 @@ module.exports = { |
|
|
|
callbackUrl: conf.callbackURL, |
|
|
|
entryPoint: conf.entryPoint, |
|
|
|
issuer: conf.issuer, |
|
|
|
cert = _.split(conf.cert, '|'), |
|
|
|
cert: _.split(conf.cert || '', '|'), |
|
|
|
signatureAlgorithm: conf.signatureAlgorithm, |
|
|
|
digestAlgorithm: conf.digestAlgorithm, |
|
|
|
identifierFormat: conf.identifierFormat, |
|
|
|