🐛 修复阻断消息 (#676)

This commit is contained in:
KimigaiiWuyi 2025-04-20 20:57:58 +08:00
parent c15f6f3f1c
commit 297938758a
2 changed files with 4 additions and 5 deletions

View File

@ -24,8 +24,8 @@ from nonebot_plugin_apscheduler import scheduler # noqa:E402
from .client import GsClient, driver # noqa:E402
from .models import Message, MessageReceive # noqa:E402
get_message = on_message(priority=0)
get_notice = on_notice(priority=0)
get_message = on_message(priority=0, block=False)
get_notice = on_notice(priority=0, block=False)
get_tn = on('inline')
connect_core = on_fullmatch(
('连接core', '链接core'),

View File

@ -23,7 +23,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "nonebot-plugin-genshinuid"
version = "4.8.0"
version = "4.8.2"
description = "支持OneBot(QQ)、OneBotV12、QQ频道、微信、KOOK开黑啦、Telegram电报、FeiShu飞书、DoDo、Villa米游社大别野、Discord的全功能NoneBot2原神插件"
authors = ["KimigaiiWuyi <444835641@qq.com>"]
license = "GPL-3.0-or-later"
@ -54,8 +54,7 @@ aiohttp = "^3.9.3"
[[tool.poetry.source]]
name = "USTC"
url = "https://pypi.mirrors.ustc.edu.cn/simple"
default = false
secondary = true
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"