From 08b419ce6424fe07ca7d466fd9d75d48f148e160 Mon Sep 17 00:00:00 2001 From: aixianling Date: Mon, 2 Sep 2024 11:11:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8F=92=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dowmd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dowmd.py b/dowmd.py index c1fba12..dd8840a 100644 --- a/dowmd.py +++ b/dowmd.py @@ -13,7 +13,7 @@ from config import conf name="dow_markdown", desire_priority=66, desc="优化markdown返回结果中的图片和网址链接。", - version="0.6", + version="0.7", author="Kubbo", hidden=False ) @@ -21,7 +21,7 @@ class dow_markdown(Plugin): def __init__(self): super().__init__() try: - self.config =super().loading_config() + self.config =super().load_config() self.handlers[Event.ON_HANDLE_CONTEXT] = self.on_handle_context self.handlers[Event.ON_DECORATE_REPLY] = self.on_decorate_reply logger.info("[dow_markdown] inited.")