fix(*): Fix further missed lowercasing of channel names by Discord for text channels

This commit is contained in:
2020-11-19 23:17:48 +00:00
parent 8d7df9d4ec
commit 17a8f98ca3
+1 -1
View File
@@ -175,7 +175,7 @@ function getUserFromMention(mention) {
}
function getChannelName(username) {
return `${username}s-adventurers`;
return `${username.toLowerCase()}s-adventurers`;
}
function makeTempChannel(message, adventureMessage) {