1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-05 03:23:49 +08:00
This commit is contained in:
Mrs4s 2020-12-03 11:02:19 +08:00
parent 8a75a6e95a
commit a4ec4077e2

View File

@ -369,7 +369,7 @@ func (bot *CQBot) ConvertStringMessage(msg string, group bool) (r []message.IMes
} }
data := strings.SplitN(p, "=", 2) data := strings.SplitN(p, "=", 2)
if len(data) == 2 { if len(data) == 2 {
params[data[0]] = data[1] params[data[0]] = CQCodeUnescapeValue(data[1])
} else { } else {
params[p] = "" params[p] = ""
} }