🎨 优化@所有人判断逻辑 #86

Merged
李寻欢 merged 1 commits from hotfix into main 2024-07-22 09:08:45 +08:00

View File

@ -160,7 +160,11 @@ func (m Message) IsAtAll() bool {
// 转换@用户列表为数组 // 转换@用户列表为数组
atUserList := strings.Split(d.AtUserList, ",") atUserList := strings.Split(d.AtUserList, ",")
// 判断是否包含@所有人 // 判断是否包含@所有人
return slice.Contain(atUserList, "notify@all") if slice.Contain(atUserList, "notify@all") {
return true
}
// 数据格式变动,再检查一下字符串是否包含 @所有人 字样
return m.IsAt() && strings.Contains(m.Content, "@所有人")
} }
// IsPrivateText // IsPrivateText