Fixed Linux TypeStr() function double quote

This commit is contained in:
vcaesar 2021-08-21 10:58:08 -04:00
parent 5f77def0e4
commit 422f8fdc88

View File

@ -742,6 +742,9 @@ func ToUC(text string) []string {
if st == "\\\\" {
st = "\\"
}
if st == `\"` {
st = `"`
}
uc = append(uc, st)
}