diff --git a/README.md b/README.md index 68eaef9f..bb3a684a 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,7 @@ PS: **ARM平台** 请使用全量版 同时 **如果你的机器 RAM < 1G 可能 * 对nonebot.beta4中PluginMeta进行解析 * 修改webui元祖类型无法正确转换类型 * 查看订阅以图片形式发送 +* 修复pix无图时不会提醒而是出错 ### 2022/7/30 diff --git a/plugins/pix_gallery/pix.py b/plugins/pix_gallery/pix.py index 2d2532b9..e9cacd5e 100755 --- a/plugins/pix_gallery/pix.py +++ b/plugins/pix_gallery/pix.py @@ -149,8 +149,8 @@ async def _(bot: Bot, event: MessageEvent, arg: Message = CommandArg()): for _ in range(num): img_url = None author = None - # if not all_image: - # await pix.finish("坏了...发完了,没图了...") + if not all_image: + await pix.finish("坏了...发完了,没图了...") img = random.choice(all_image) all_image.remove(img) if isinstance(img, OmegaPixivIllusts):