From e025a3a656a0b795b4216c8dec2f153ac3d78882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B4=9B=E6=B0=B4=E5=B1=85=E5=AE=A4?= Date: Fri, 17 Mar 2023 00:23:31 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20`PlayerInfo`=20is=20not=20?= =?UTF-8?q?persisted?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/account/players.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/account/players.py b/plugins/account/players.py index f46c8ff..3aab60c 100644 --- a/plugins/account/players.py +++ b/plugins/account/players.py @@ -200,7 +200,7 @@ class PlayersManagesPlugin(Plugin): await callback_query.edit_message_text(f"账号 {player_id} 未找到") return - player_info = await self.player_info_service.get(player) + player_info = await self.player_info_service.get_form_sql(player) if player_info is None: await callback_query.edit_message_text(f"账号 {player_id} 信息未找到") return