diff --git a/tux/ui/modals/report.py b/tux/ui/modals/report.py index 6a084d29b..aac5386ff 100644 --- a/tux/ui/modals/report.py +++ b/tux/ui/modals/report.py @@ -45,8 +45,7 @@ async def on_submit(self, interaction: discord.Interaction) -> None: embed = EmbedCreator.create_embed( bot=self.bot, embed_type=EmbedCreator.INFO, - user_name=interaction.user.name, - user_display_avatar=interaction.user.display_avatar.url, + user_name="tux", title=(f"Anonymous report for {self.short.value}"), # type: ignore description=self.long.value, # type: ignore ) @@ -89,4 +88,9 @@ async def on_submit(self, interaction: discord.Interaction) -> None: delete_after=30, ) - await report_log_channel.send(embed=embed) + message = await report_log_channel.send(embed=embed) + await report_log_channel.create_thread( + name=f"Anonymous report for {self.short.value}", # type: ignore + message=message, + auto_archive_duration=10080, + )