Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions techsupport_bot/commands/modmail.py
Original file line number Diff line number Diff line change
Expand Up @@ -1205,7 +1205,11 @@ async def contact(self: Self, ctx: commands.Context, user: discord.User) -> None
source_channel=ctx.channel,
):
await auxiliary.send_confirm_embed(
message="Thread successfully created!", channel=ctx.channel
message=(
"Thread successfully created! "
f"{self.bot.get_channel(active_threads[user.id]).mention}"
),
channel=ctx.channel,
)

@auxiliary.with_typing
Expand Down Expand Up @@ -1265,7 +1269,11 @@ async def selfcontact(self: Self, ctx: commands.Context) -> None:
source_channel=ctx.channel,
):
await auxiliary.send_confirm_embed(
message="Thread successfully created!", channel=ctx.channel
message=(
f"Thread successfully created! "
f"{self.bot.get_channel(active_threads[ctx.author.id]).mention}"
),
channel=ctx.channel,
)

@commands.group(name="modmail")
Expand Down
Loading