mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
修复词云
This commit is contained in:
parent
eaa809931c
commit
6e76ffb60f
@ -335,6 +335,9 @@ PS: **ARM平台** 请使用全量版 同时 **如果你的机器 RAM < 1G 可能
|
|||||||
|
|
||||||
* 修复config.yaml中把False也当成None的问题 [@pull/1288](https://github.com/HibiKier/zhenxun_bot/pull/1288)
|
* 修复config.yaml中把False也当成None的问题 [@pull/1288](https://github.com/HibiKier/zhenxun_bot/pull/1288)
|
||||||
* 删除道具表无用字段(props) [@pull/1287](https://github.com/HibiKier/zhenxun_bot/pull/1287)
|
* 删除道具表无用字段(props) [@pull/1287](https://github.com/HibiKier/zhenxun_bot/pull/1287)
|
||||||
|
* 修复词云
|
||||||
|
* 修复我的签到签到图片
|
||||||
|
* 更正BuffSkin添加语句
|
||||||
|
|
||||||
### 2022/3/1
|
### 2022/3/1
|
||||||
|
|
||||||
|
|||||||
@ -105,7 +105,7 @@ class ChatHistory(Model):
|
|||||||
create_time__gte=datetime.now() - timedelta(days=days)
|
create_time__gte=datetime.now() - timedelta(days=days)
|
||||||
)
|
)
|
||||||
elif isinstance(days, tuple):
|
elif isinstance(days, tuple):
|
||||||
query = query.filter(create_at__range=days)
|
query = query.filter(create_time__range=days)
|
||||||
return await query.all() # type: ignore
|
return await query.all() # type: ignore
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user