fix(forums): fixed incorrect argument positioning causing errors with buttons
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
This commit is contained in:
parent
0529842b62
commit
6ee67f40e7
1 changed files with 5 additions and 6 deletions
|
@ -45,10 +45,9 @@ class Forums(commands.Cog):
|
||||||
self.config = Config.get_conf(None, cog_name='Forums', identifier=2352711325)
|
self.config = Config.get_conf(None, cog_name='Forums', identifier=2352711325)
|
||||||
|
|
||||||
@ui.button(label="Yes", style=discord.ButtonStyle.success, emoji="✅")
|
@ui.button(label="Yes", style=discord.ButtonStyle.success, emoji="✅")
|
||||||
async def resolved_button_yes(self, button: ui.Button, interaction: discord.Interaction):
|
async def resolved_button_yes(self, interaction: discord.Interaction, button: ui.Button):
|
||||||
match = any(role_id in interaction.user.roles for role_id in await self.config.guild(self.ctx.guild).request_roles())
|
match = any(role_id in interaction.user.roles for role_id in await self.config.guild(interaction.guild).request_roles())
|
||||||
if match or interaction.user.id == interaction.channel.owner.id:
|
if match or interaction.user.id == interaction.channel.owner.id:
|
||||||
channel = self.ctx.channel
|
|
||||||
await interaction.response.defer()
|
await interaction.response.defer()
|
||||||
if self.reason:
|
if self.reason:
|
||||||
response_reason = f"Thread closed by {interaction.user.mention} with reason: {self.reason}"
|
response_reason = f"Thread closed by {interaction.user.mention} with reason: {self.reason}"
|
||||||
|
@ -56,15 +55,15 @@ class Forums(commands.Cog):
|
||||||
else:
|
else:
|
||||||
response_reason = f"Thread closed by {interaction.user.mention}"
|
response_reason = f"Thread closed by {interaction.user.mention}"
|
||||||
reason = f"Thread closed by {interaction.user.name} ({interaction.user.id})"
|
reason = f"Thread closed by {interaction.user.name} ({interaction.user.id})"
|
||||||
await channel.edit(locked=True, archived=True, applied_tags=channel.applied_tags + await self.config.guild(channel.guild).forum_tag(), reason=reason)
|
await interaction.channel.edit(locked=True, archived=True, applied_tags=interaction.channel.applied_tags + await self.config.guild(interaction.guild).forum_tag(), reason=reason)
|
||||||
await self.msg.edit(content=response_reason, view=None)
|
await self.msg.edit(content=response_reason, view=None)
|
||||||
await self.ctx.message.add_reaction("✅")
|
await self.ctx.message.add_reaction("✅")
|
||||||
else:
|
else:
|
||||||
await interaction.response.send_message(content="You cannot close this thread!", ephemeral=True)
|
await interaction.response.send_message(content="You cannot close this thread!", ephemeral=True)
|
||||||
|
|
||||||
@ui.button(label="No", style=discord.ButtonStyle.danger, emoji="✖️")
|
@ui.button(label="No", style=discord.ButtonStyle.danger, emoji="✖️")
|
||||||
async def resolved_button_no(self, button: ui.Button, interaction: discord.Interaction):
|
async def resolved_button_no(self, interaction: discord.Interaction, button: ui.Button):
|
||||||
match = any(role_id in interaction.user.roles for role_id in await self.config.guild(self.ctx.guild).request_roles())
|
match = any(role_id in interaction.user.roles for role_id in await self.config.guild(interaction.guild).request_roles())
|
||||||
if match or interaction.user.id == interaction.channel.owner.id:
|
if match or interaction.user.id == interaction.channel.owner.id:
|
||||||
await interaction.response.defer()
|
await interaction.response.defer()
|
||||||
await self.msg.delete()
|
await self.msg.delete()
|
||||||
|
|
Loading…
Reference in a new issue