fix(forums): fixed value being wrong lol
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
682efc0cca
commit
5a77adf1cd
1 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@ class Forums(commands.Cog):
|
|||
options = []
|
||||
for tag in data:
|
||||
emoji = ctx.guild.get_emoji(tag.emoji.id) if tag.emoji.id else str(tag.emoji.name)
|
||||
options.append(discord.SelectOption(label=tag.name, emoji=emoji, description=""))
|
||||
options.append(discord.SelectOption(label=tag.name, emoji=emoji, description="", value=tag.id))
|
||||
return options
|
||||
|
||||
@forumsconfig.command(name="tagset")
|
||||
|
@ -120,7 +120,7 @@ class Select(ui.Select):
|
|||
async def callback(self, interaction: discord.Interaction):
|
||||
msg: discord.Message = self.message
|
||||
config = Config.get_conf(None, cog_name='Forums', identifier=2352711325)
|
||||
await config.guild(msg.guild).forum_tag.set(self.values[0].id)
|
||||
await config.guild(msg.guild).forum_tag.set(self.values[0])
|
||||
await msg.edit(f"Set resolved tag to {self.values[0]}", view=None)
|
||||
await interaction.response.defer()
|
||||
|
||||
|
|
Loading…
Reference in a new issue