修复safeProperty方法

This commit is contained in:
goldensea
2025-12-01 17:18:17 +08:00
parent 03e4ad5db5
commit 9810e55a15

View File

@@ -100,9 +100,6 @@ func safeProperty(property map[string]any) {
if _, ok := v.(string); ok {
property[k] = onlyWordRE.ReplaceAllString(gconv.String(v), "*")
}
} else {
property[k] = safePropertyRE.ReplaceAllString(gconv.String(v), "*")
}
}
for _, delkey := range delkeys {