🎨 Improve the error message when account_id does not exist

This commit is contained in:
洛水居室 2023-11-03 22:02:06 +08:00 committed by xtaodada
parent dc6c7e313c
commit 3aa104c073
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659

View File

@ -248,6 +248,11 @@ class AccountCookiesPlugin(Plugin.Conversation):
logger.warning("用户 %s[%s] 获取账号信息发生错误 [%s]%s", user.full_name, user.id, exc.ret_code, exc.original)
await message.reply_text("Stoken 无效,请重新绑定。", reply_markup=ReplyKeyboardRemove())
return ConversationHandler.END
except ValueError as e:
if "account_id" in str(e):
await message.reply_text("account_id 未找到,请检查输入是否有误。")
return ConversationHandler.END
raise e
except UnicodeEncodeError:
await message.reply_text("Stoken 非法,请重新绑定。", reply_markup=ReplyKeyboardRemove())
return ConversationHandler.END