キー名も間違えてたので修正

This commit is contained in:
suti7yk5032 2024-09-26 21:45:56 +09:00
parent 6fae61351d
commit 8775b22738

View file

@ -1319,7 +1319,7 @@ async def masterpass(interaction: discord.Interaction, pc_number: int):
pc_master_password_get = dislocker.show_pc_master_password(pc_number=pc_number)
if pc_master_password_get["result"] == 0:
pc_master_password = pc_master_password_get["output_dict"]["master_password"]
pc_master_password = pc_master_password_get["output_dict"]["pc_master_password"]
await interaction.response.send_message(f"# :key: PC番号 {pc_number} 番のマスターパスワードは以下の通りです。\n>>> # マスターパスワード | {pc_master_password}", ephemeral=True)
else:
await interaction.response.send_message("# :skull_crossbones: マスターパスワードの取得に失敗しました。", ephemeral=True)