From 8b4aa65495d98cfd244153824f5962ac71951cca Mon Sep 17 00:00:00 2001 From: Kyomotoi Date: Fri, 18 Feb 2022 00:44:08 +0800 Subject: =?UTF-8?q?=F0=9F=90=9B=20=E4=BF=AE=E5=A4=8Db=E7=AB=99=E5=B0=8F?= =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E6=97=A0=E6=B3=95=E6=8D=95=E6=8D=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/plugins/applet/__init__.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ATRI/plugins/applet/__init__.py') diff --git a/ATRI/plugins/applet/__init__.py b/ATRI/plugins/applet/__init__.py index d6e2ab6..233df3e 100644 --- a/ATRI/plugins/applet/__init__.py +++ b/ATRI/plugins/applet/__init__.py @@ -1,21 +1,21 @@ from nonebot.adapters.onebot.v11 import MessageEvent from nonebot.adapters.onebot.v11.helpers import Cooldown -from ATRI.log import logger as log from .data_source import Applet -bili_applet = Applet().on_message("小程序检测", "小程序爪巴", block=False) +bili_applet = Applet().on_message("b站小程序检测", "B站小程序爪巴", block=False) @bili_applet.handle([Cooldown(3)]) -async def _fk_bili(event: MessageEvent): - msg = str(event.message) +async def _(event: MessageEvent): + msg = str(event.get_message()) try: - result, is_ok = await Applet().fk_bili(msg) + result, is_ok = await Applet().msg_builder(msg) except Exception: return - log.debug(result, is_ok) + if not is_ok: return + await bili_applet.finish(result) -- cgit v1.2.3 From e7ff55fa0b39805ec759afd5b06c666538f5c7f1 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Thu, 17 Feb 2022 16:45:48 +0000 Subject: =?UTF-8?q?:rotating=5Flight:=20=E8=87=AA=E5=8A=A8=E8=BF=9B?= =?UTF-8?q?=E8=A1=8C=E4=BB=A3=E7=A0=81=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ATRI/plugins/applet/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ATRI/plugins/applet/__init__.py') diff --git a/ATRI/plugins/applet/__init__.py b/ATRI/plugins/applet/__init__.py index 233df3e..8d89514 100644 --- a/ATRI/plugins/applet/__init__.py +++ b/ATRI/plugins/applet/__init__.py @@ -14,7 +14,7 @@ async def _(event: MessageEvent): result, is_ok = await Applet().msg_builder(msg) except Exception: return - + if not is_ok: return -- cgit v1.2.3