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]]: