Commit c6f701e8 authored by Mrs4s's avatar Mrs4s Committed by GitHub

Merge pull request #84 from Shigma/master

adjust unescape order
parents bb033159 a49a57b9
...@@ -414,7 +414,7 @@ func CQCodeUnescapeText(content string) string { ...@@ -414,7 +414,7 @@ func CQCodeUnescapeText(content string) string {
} }
func CQCodeUnescapeValue(content string) string { func CQCodeUnescapeValue(content string) string {
ret := CQCodeUnescapeText(content) ret := strings.ReplaceAll(content, ",", ",")
ret = strings.ReplaceAll(ret, ",", ",") ret = CQCodeUnescapeText(ret)
return 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