Commit a49a57b9 authored by Shigma's avatar Shigma

adjust unescape order

parent bb033159
......@@ -414,7 +414,7 @@ func CQCodeUnescapeText(content string) string {
}
func CQCodeUnescapeValue(content string) string {
ret := CQCodeUnescapeText(content)
ret = strings.ReplaceAll(ret, ",", ",")
ret := strings.ReplaceAll(content, ",", ",")
ret = CQCodeUnescapeText(ret)
return ret
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment