diff --git a/coolq/cqcode.go b/coolq/cqcode.go index 47bc99d..f885439 100644 --- a/coolq/cqcode.go +++ b/coolq/cqcode.go @@ -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 }