fix(forums): maybe actually fixed forums?
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
Seaswimmer 2023-09-07 18:55:49 -04:00
parent c288a1324c
commit 8c858a356e
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -99,7 +99,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="", value=int(tag.id)))
options.append(discord.SelectOption(label=tag.name, emoji=emoji, description="", value=tag.id))
return options
@forumsconfig.command(name="tagset")
@ -117,7 +117,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])
await config.guild(msg.guild).forum_tag.set(int(self.values[0]))
await msg.edit(content=f"Set resolved tag to {self.values[0]}", view=None)
await interaction.response.defer()