From d9076c4ee9981e5d94310262598a1f220c5e04ce Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Mon, 9 May 2022 21:51:40 -0400 Subject: [PATCH] fix: typo in saml auth module --- server/modules/authentication/saml/authentication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/authentication/saml/authentication.js b/server/modules/authentication/saml/authentication.js index aa518196..c0771381 100644 --- a/server/modules/authentication/saml/authentication.js +++ b/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,