From b9521cb3a9399e962519215d4784ec03a0c2f77f Mon Sep 17 00:00:00 2001 From: jxxghp Date: Fri, 22 Aug 2025 07:05:16 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20typo:=20change=20"=E6=9C=AA=E5=B0=B1?= =?UTF-8?q?=E7=BB=AD"=20to=20"=E6=9C=AA=E5=B0=B1=E7=BB=AA"=20in=20module?= =?UTF-8?q?=20status=20messages=20(#4804)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cursor Agent Co-authored-by: jxxghp --- app/modules/slack/__init__.py | 2 +- app/modules/synologychat/__init__.py | 2 +- app/modules/telegram/__init__.py | 2 +- app/modules/vocechat/__init__.py | 2 +- app/modules/wechat/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/modules/slack/__init__.py b/app/modules/slack/__init__.py index 6368f2c5..5517e66d 100644 --- a/app/modules/slack/__init__.py +++ b/app/modules/slack/__init__.py @@ -76,7 +76,7 @@ class SlackModule(_ModuleBase, _MessageBase[Slack]): for name, client in self.get_instances().items(): state = client.get_state() if not state: - return False, f"Slack {name} 未就续" + return False, f"Slack {name} 未就绪" return True, "" def init_setting(self) -> Tuple[str, Union[str, bool]]: diff --git a/app/modules/synologychat/__init__.py b/app/modules/synologychat/__init__.py index 9fc034ac..47e138ee 100644 --- a/app/modules/synologychat/__init__.py +++ b/app/modules/synologychat/__init__.py @@ -70,7 +70,7 @@ class SynologyChatModule(_ModuleBase, _MessageBase[SynologyChat]): for name, client in self.get_instances().items(): state = client.get_state() if not state: - return False, f"Synology Chat {name} 未就续" + return False, f"Synology Chat {name} 未就绪" return True, "" def init_setting(self) -> Tuple[str, Union[str, bool]]: diff --git a/app/modules/telegram/__init__.py b/app/modules/telegram/__init__.py index e5e2f86b..ccef4668 100644 --- a/app/modules/telegram/__init__.py +++ b/app/modules/telegram/__init__.py @@ -81,7 +81,7 @@ class TelegramModule(_ModuleBase, _MessageBase[Telegram]): for name, client in self.get_instances().items(): state = client.get_state() if not state: - return False, f"Telegram {name} 未就续" + return False, f"Telegram {name} 未就绪" return True, "" def init_setting(self) -> Tuple[str, Union[str, bool]]: diff --git a/app/modules/vocechat/__init__.py b/app/modules/vocechat/__init__.py index fecb49c2..c734b3c5 100644 --- a/app/modules/vocechat/__init__.py +++ b/app/modules/vocechat/__init__.py @@ -71,7 +71,7 @@ class VoceChatModule(_ModuleBase, _MessageBase[VoceChat]): for name, client in self.get_instances().items(): state = client.get_state() if not state: - return False, f"VoceChat {name} 未就续" + return False, f"VoceChat {name} 未就绪" return True, "" def init_setting(self) -> Tuple[str, Union[str, bool]]: diff --git a/app/modules/wechat/__init__.py b/app/modules/wechat/__init__.py index cfc99a7a..c4220e23 100644 --- a/app/modules/wechat/__init__.py +++ b/app/modules/wechat/__init__.py @@ -75,7 +75,7 @@ class WechatModule(_ModuleBase, _MessageBase[WeChat]): for name, client in self.get_instances().items(): state = client.get_state() if not state: - return False, f"企业微信 {name} 未就续" + return False, f"企业微信 {name} 未就绪" return True, "" def init_setting(self) -> Tuple[str, Union[str, bool]]: