diff --git a/GenshinUID/__init__.py b/GenshinUID/__init__.py index 4a07de4d..29c5302f 100644 --- a/GenshinUID/__init__.py +++ b/GenshinUID/__init__.py @@ -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'), diff --git a/pyproject.toml b/pyproject.toml index 881e61f8..74cd66c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"