mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-06-30 20:03:24 +00:00
adjust unescape order
This commit is contained in:
@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user