fix(art): use a File object instead of Attachment

This commit is contained in:
Seaswimmer 2023-12-28 10:07:02 -05:00
parent 02a68b726c
commit 14c068c206
Signed by untrusted user: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -40,7 +40,7 @@ class Art(commands.Cog):
if art_submission_channel is None: if art_submission_channel is None:
await interaction.followup.send("Art submission channel not set. Report this error to the server administrators.", ephemeral=True) await interaction.followup.send("Art submission channel not set. Report this error to the server administrators.", ephemeral=True)
return return
await art_submission_channel.send(f"Art submission from {interaction.user.mention} ({interaction.user.id}):", file=art) await art_submission_channel.send(f"Art submission from {interaction.user.mention} ({interaction.user.id}):", file=await art.to_file(filename=interaction.user.id))
await interaction.followup.send("Art submitted.", ephemeral=True) await interaction.followup.send("Art submitted.", ephemeral=True)
@commands.group() @commands.group()