We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a87e704 commit 85db1b6Copy full SHA for 85db1b6
core/thread.py
@@ -742,10 +742,10 @@ def format_channel_name(self, author):
742
"".join(l for l in name if l not in string.punctuation and l.isprintable())
743
or "null"
744
)
745
- new_name += f"⧫{author.discriminator}"
+ new_name += f"-{author.discriminator}"
746
747
while new_name in [c.name for c in self.bot.modmail_guild.text_channels]:
748
- new_name += "⧫x" # two channels with same name
+ new_name += "-x" # two channels with same name
749
750
return new_name
751
0 commit comments