diff --git a/YetAnotherPicSearch/__init__.py b/YetAnotherPicSearch/__init__.py index 172ff16..46c0690 100644 --- a/YetAnotherPicSearch/__init__.py +++ b/YetAnotherPicSearch/__init__.py @@ -2,6 +2,7 @@ from nonebot.plugin import PluginMetadata, inherit_supported_adapters, require +require("nonebot_plugin_waiter") require("nonebot_plugin_alconna") from . import __main__ as __main__ @@ -10,7 +11,7 @@ load_search_func() -__version__ = "2.0.1" +__version__ = "2.0.1.post1" __plugin_meta__ = PluginMetadata( name="YetAnotherPicSearch", description="基于 NoneBot2 及 PicImageSearch 的另一个 NoneBot 搜图插件", @@ -18,6 +19,9 @@ type="application", homepage="https://github.com/lgc-NB2Dev/YetAnotherPicSearch", config=ConfigModel, - supported_adapters=inherit_supported_adapters("nonebot_plugin_alconna"), + supported_adapters=inherit_supported_adapters( + "nonebot_plugin_waiter", + "nonebot_plugin_alconna", + ), extra={}, )