fix(aurora): fixed resetting pagesize

This commit is contained in:
Seaswimmer 2024-01-16 11:18:05 +00:00
parent 56857554e9
commit d20cb4c3bc
Signed by untrusted user: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -61,7 +61,10 @@ class Overrides(ui.View):
await interaction.response.send_message("You cannot change this setting for other users.", ephemeral=True)
return
await interaction.response.defer()
await config.user(self.ctx.author).history_inline_pagesize.set(int(select.values[0]))
if select.values[0] == "default":
await config.user(self.ctx.author).history_inline_pagesize.clear()
else:
await config.user(self.ctx.author).history_inline_pagesize.set(int(select.values[0]))
await interaction.message.edit(embed=await embed(self.ctx))
@ui.select(placeholder="Pagesize", options=create_pagesize_options(), row=2)
@ -70,5 +73,8 @@ class Overrides(ui.View):
await interaction.response.send_message("You cannot change this setting for other users.", ephemeral=True)
return
await interaction.response.defer()
await config.user(self.ctx.author).history_pagesize.set(int(select.values[0]))
if select.values[0] == "default":
await config.user(self.ctx.author).history_pagesize.clear()
else:
await config.user(self.ctx.author).history_pagesize.set(int(select.values[0]))
await interaction.message.edit(embed=await embed(self.ctx))