From 02dc03e5efc1c83abed235ae85e6f1a05e6df09e Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Sat, 21 Nov 2020 14:38:50 +0000 Subject: [PATCH] fix(*): Enable users with spaces in their username to delete their adventure channels Why on earth does Discord even allow people to have spaces in their usernames? --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index ef544ec..719ca97 100644 --- a/index.js +++ b/index.js @@ -177,7 +177,7 @@ function getUserFromMention(mention) { } function getChannelName(username) { - return `${username.toLowerCase()}s-adventurers`; + return `${username.toLowerCase().replace(' ', '-')}s-adventurers`; } function makeTempChannel(message, adventureMessage) {