1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-05 03:23:49 +08:00

限制 handle_quick_op... 的 at_sender 使用场景, Closes #701

This commit is contained in:
Sam 2021-03-06 16:01:57 +08:00
parent 95f2227898
commit b2738d909b

View File

@ -831,9 +831,9 @@ func (bot *CQBot) CQHandleQuickOperation(context, operation gjson.Result) MSG {
if reply.Exists() {
autoEscape := global.EnsureBool(operation.Get("auto_escape"), false)
at := !isAnonymous // 除匿名消息场合外默认 true
at := !isAnonymous && msgType == "group" // 除匿名消息场合外默认 true
if operation.Get("at_sender").Exists() {
at = operation.Get("at_sender").Bool() && !isAnonymous
at = operation.Get("at_sender").Bool() && !isAnonymous && msgType == "group"
}
if at && reply.IsArray() {