mirror of https://github.com/status-im/codimd.git
Merge pull request #472 from tkykm/patch-1
Read to correct tlsca file path
This commit is contained in:
commit
6e119603ab
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue