Merge pull request #472 from tkykm/patch-1

Read to correct tlsca file path
This commit is contained in:
Raccoon 2017-06-01 19:20:42 +08:00 committed by GitHub
commit 6e119603ab
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ if (config.ldap.tlsca) {
let ca = config.ldap.tlsca.split(',')
let caContent = []
for (let i of ca) {
if (fs.existsSync(ca[i])) {
caContent.push(fs.readFileSync(ca[i], 'utf8'))
if (fs.existsSync(i)) {
caContent.push(fs.readFileSync(i, 'utf8'))
}
}
let tlsOptions = {