fix(suggestions): fixed context menu commands
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
Seaswimmer 2023-09-21 12:28:12 -04:00
parent a2aae0e9eb
commit 4c3c030112
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -2,7 +2,7 @@ import datetime
import re
import typing
import discord
from redbot.core import app_commands, Config, checks, commands
from redbot.core import app_commands, Config, checks, commands, bot
from redbot.core.bot import Red
from redbot.core.utils.chat_formatting import humanize_list
@ -612,10 +612,11 @@ class SuggestionApproveModal(discord.ui.Modal, title="Approving suggestion..."):
)
async def on_submit(self, interaction: discord.Interaction):
cog = bot.get_cog('Suggestions')
if self.reason.value != "":
await Suggestions._interaction_finish_suggestion(interaction, self.message, True, self.reason.value)
await Suggestions._interaction_finish_suggestion(cog, interaction, self.message, True, self.reason.value)
else:
await Suggestions._interaction_finish_suggestion(interaction, self.message, True, None)
await Suggestions._interaction_finish_suggestion(cog, interaction, self.message, True, None)
await interaction.response.send_message(content="Suggestion approved!", ephemeral=True)
class SuggestionDenyModal(discord.ui.Modal, title="Denying suggestion..."):
@ -632,10 +633,11 @@ class SuggestionDenyModal(discord.ui.Modal, title="Denying suggestion..."):
)
async def on_submit(self, interaction: discord.Interaction):
cog = bot.get_cog('Suggestions')
if self.reason.value != "":
await Suggestions._interaction_finish_suggestion(interaction, self.message, False, self.reason.value)
await Suggestions._interaction_finish_suggestion(cog, interaction, self.message, False, self.reason.value)
else:
await Suggestions._interaction_finish_suggestion(interaction, self.message, False, None)
await Suggestions._interaction_finish_suggestion(cog, interaction, self.message, False, None)
await interaction.response.send_message(content="Suggestion denied!", ephemeral=True)
@app_commands.context_menu(name="Approve Suggestion")