diff --git a/plugins/errorhandler.py b/plugins/errorhandler.py index dd67b369..d4356a87 100644 --- a/plugins/errorhandler.py +++ b/plugins/errorhandler.py @@ -74,7 +74,7 @@ def conversation_error_handler(func: Callable) -> Callable: if "10001" in str(exc): await send_user_notification(update, context, "Cookies无效,请尝试重新绑定账户") elif "10103" in str(exc): - await send_user_notification(update, context, "Cookie有效,但没有绑定到游戏帐户。") + await send_user_notification(update, context, "Cookie有效,但没有绑定到游戏帐户,请尝试重新绑定邮游戏账户") else: await send_user_notification(update, context, "Cookies无效,具体原因未知") return ConversationHandler.END