mirror of
https://github.com/ArcticFoxes-net/ONC-Converter
synced 2024-12-22 00:11:33 -05:00
No need to make values safe, no quotes around x509 name
This commit is contained in:
parent
c66de4268e
commit
225b541cb6
@ -126,7 +126,7 @@
|
|||||||
// closing tag was found
|
// closing tag was found
|
||||||
// make sure the tag name and the contents are safe
|
// make sure the tag name and the contents are safe
|
||||||
const name = makeSafe(xmlTag)
|
const name = makeSafe(xmlTag)
|
||||||
const value = makeSafe(xmlContent)
|
const value = xmlContent
|
||||||
// store everything and reset the xml variables
|
// store everything and reset the xml variables
|
||||||
keys[name] = value
|
keys[name] = value
|
||||||
ovpn[name] = name
|
ovpn[name] = name
|
||||||
@ -146,7 +146,7 @@
|
|||||||
if (!match) continue
|
if (!match) continue
|
||||||
// make sure everything is safe and then store it
|
// make sure everything is safe and then store it
|
||||||
const key = makeSafe(match[1])
|
const key = makeSafe(match[1])
|
||||||
const value = match[2] ? makeSafe((match[3] || '')) : true
|
const value = match[2] ? (match[3] || '') : true
|
||||||
ovpn[key] = value
|
ovpn[key] = value
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -257,7 +257,7 @@
|
|||||||
if (x509String.includes("'")) {
|
if (x509String.includes("'")) {
|
||||||
// the name is quoted with '
|
// the name is quoted with '
|
||||||
const parts = x509String.split("'")
|
const parts = x509String.split("'")
|
||||||
x509['Name'] = `'${parts[1]}'`
|
x509['Name'] = parts[1]
|
||||||
if (parts[2]) {
|
if (parts[2]) {
|
||||||
x509['Type'] = parts[2].trim()
|
x509['Type'] = parts[2].trim()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user