mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 04:45:27 +00:00
🐛 Fix the issue of incorrect account_id retrieval
This commit is contained in:
parent
df1c00a0dd
commit
c19eb4679a
@ -276,8 +276,13 @@ class AccountCookiesPlugin(Plugin.Conversation):
|
||||
except Exception as exc: # pylint: disable=W0703
|
||||
logger.error("绑定时获取新Cookie失败 [%s]", (str(exc)))
|
||||
finally:
|
||||
if cookies.user_id is not None:
|
||||
account_cookies_plugin_data.account_id = cookies.user_id
|
||||
cookies.login_ticket = None
|
||||
cookies.login_uid = None
|
||||
if account_cookies_plugin_data.account_id is None:
|
||||
await message.reply_text("无法获取账号ID,请检查Cookie是否正确或请稍后重试")
|
||||
return ConversationHandler.END
|
||||
genshin_account: Optional[GenshinAccount] = None
|
||||
level: int = 0
|
||||
# todo : 多账号绑定
|
||||
|
Loading…
Reference in New Issue
Block a user