Skip to content

Commit 15a38bc

Browse files
committed
Update thread move message in case mention was set to disable/None.
1 parent 4054c51 commit 15a38bc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cogs/modmail.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,11 @@ async def move(self, ctx, *, arguments):
341341

342342
if self.bot.config["thread_move_notify_mods"]:
343343
mention = self.bot.config["mention"]
344-
await thread.channel.send(f"{mention}, thread has been moved.")
344+
if mention is not None:
345+
msg = f"{mention}, thread has been moved."
346+
else:
347+
msg = "Thread has been moved."
348+
await thread.channel.send(msg)
345349

346350
sent_emoji, _ = await self.bot.retrieve_emoji()
347351
await self.bot.add_reaction(ctx.message, sent_emoji)

0 commit comments

Comments
 (0)