减少空格对答题的干扰
This commit is contained in:
parent
ba767ad611
commit
f2dfb8421e
|
@ -396,7 +396,7 @@ func (c *Core) RespondDaily(user *model.User, model string) {
|
||||||
|
|
||||||
for _, option := range options {
|
for _, option := range options {
|
||||||
for _, tip := range tips {
|
for _, tip := range tips {
|
||||||
if strings.Contains(option, tip) {
|
if strings.Contains(strings.ReplaceAll(option, " ", ""), strings.ReplaceAll(tip, " ", "")) {
|
||||||
answer = append(answer, option)
|
answer = append(answer, option)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue