From 317a752a7c589c794bdd05991c2dbcc3f052f641 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Wed, 6 May 2020 16:31:04 -0400 Subject: [PATCH] fix lowercasing issue' --- src/commands/addredirect.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/addredirect.ts b/src/commands/addredirect.ts index 11bc1e1..92f6e0f 100644 --- a/src/commands/addredirect.ts +++ b/src/commands/addredirect.ts @@ -18,7 +18,7 @@ export default class AddRedirect extends Command { const check = await this.client.db.redirect.findOne({ key: args[1].toLowerCase() }); if (check) return this.error(message.channel, `Redirect key ${args[1].toLowerCase()} already exists. Linked to: ${check.to}`); try { - const test = new URL(args[0].toLowerCase()); + const test = new URL(args[0]); if (test.protocol !== 'https:') return this.error(message.channel, 'Protocol must be HTTPS.'); } catch { return this.error(message.channel, 'This doesn\'t appear to be a valid URL.'); @@ -27,10 +27,10 @@ export default class AddRedirect extends Command { // eslint-disable-next-line new-cap const redirect = new this.client.db.redirect({ key: args[1].toLowerCase(), - to: args[0].toLowerCase(), + to: args[0], }); await redirect.save(); - return this.success(message.channel, `Redirect https://loc.sh/${args[1].toLowerCase()} -> ${args[0].toLowerCase()} is now active.`); + return this.success(message.channel, `Redirect https://loc.sh/${args[1].toLowerCase()} -> ${args[0]} is now active.`); } catch (err) { return this.client.util.handleError(err, message, this); }