fix(aurora): fixed resetting pagesize
This commit is contained in:
parent
56857554e9
commit
d20cb4c3bc
1 changed files with 8 additions and 2 deletions
|
@ -61,7 +61,10 @@ class Overrides(ui.View):
|
||||||
await interaction.response.send_message("You cannot change this setting for other users.", ephemeral=True)
|
await interaction.response.send_message("You cannot change this setting for other users.", ephemeral=True)
|
||||||
return
|
return
|
||||||
await interaction.response.defer()
|
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))
|
await interaction.message.edit(embed=await embed(self.ctx))
|
||||||
|
|
||||||
@ui.select(placeholder="Pagesize", options=create_pagesize_options(), row=2)
|
@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)
|
await interaction.response.send_message("You cannot change this setting for other users.", ephemeral=True)
|
||||||
return
|
return
|
||||||
await interaction.response.defer()
|
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))
|
await interaction.message.edit(embed=await embed(self.ctx))
|
||||||
|
|
Loading…
Reference in a new issue