fix(aurora): possibly fixed editing the config menu on settings change

This commit is contained in:
Seaswimmer 2024-01-15 15:20:47 +00:00
parent a5b0055256
commit a7f6cff625
Signed by untrusted user: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -11,18 +11,13 @@ class Overrides(ui.View):
@ui.button(label="Auto Evidence Format", style=ButtonStyle.green)
async def auto_evidenceformat(self, interaction: Interaction, button: ui.Button): # pylint: disable=unused-argument
await interaction.response.defer(ephemeral=True)
await interaction.response.defer()
current_setting = await config.user(self.ctx.author).auto_evidenceformat()
if current_setting is not None:
await config.user(self.ctx.author).auto_evidenceformat.set(not current_setting)
else:
await config.user(self.ctx.author).auto_evidenceformat.set(True)
if current_setting is True:
response = "Auto Evidence Format disabled."
else:
response = "Auto Evidence Format enabled."
await self.ctx.message.edit(embed=await embed(self.ctx))
await interaction.followup.send(content=response, ephemeral=True)
await interaction.message.edit(embed=await embed(self.ctx))
@ui.button(label="Ephemeral", style=ButtonStyle.green)
async def ephemeral(self, interaction: Interaction, button: ui.Button): # pylint: disable=unused-argument