Merge pull request '🎨 优化@所有人判断逻辑' (#86) from hotfix into main
All checks were successful
BuildImage / build-image (push) Successful in 1m54s

Reviewed-on: #86
This commit is contained in:
李寻欢 2024-07-22 09:08:44 +08:00
commit 791f0a550a

View File

@ -160,7 +160,11 @@ func (m Message) IsAtAll() bool {
// 转换@用户列表为数组
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