mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 06:12:53 +08:00
修复词条关键词"问"前空格问题
This commit is contained in:
parent
0756d39ac5
commit
e42521f0a3
@ -280,6 +280,7 @@ PS: **ARM平台** 请使用全量版 同时 **如果你的机器 RAM < 1G 可能
|
||||
### 2022/8/26
|
||||
|
||||
* 修复群管理员无法添加词条
|
||||
* 修复词条关键词"问"前空格问题
|
||||
|
||||
### 2022/8/23
|
||||
|
||||
|
||||
@ -130,8 +130,9 @@ async def _(
|
||||
problem = temp
|
||||
break
|
||||
problem = unescape(problem)
|
||||
index = len((word_scope or "") + "添加词条" + (word_type or "") + problem) + 1
|
||||
event.message[0] = event.message[0].data["text"][index + 1 :].strip()
|
||||
# index = len((word_scope or "") + "添加词条" + (word_type or "") + problem) + 1
|
||||
# event.message[0] = event.message[0].data["text"][index + 1 :].strip()
|
||||
event.message[0] = event.message[0].data["text"].split('答', maxsplit=1)[-1].strip()
|
||||
state["word_scope"] = word_scope
|
||||
state["word_type"] = word_type
|
||||
state["problem"] = problem
|
||||
|
||||
Loading…
Reference in New Issue
Block a user