Fixed issue with lengthen, added new activity messages

This commit is contained in:
TheEssem 2020-08-06 14:21:48 -05:00
parent 70c4ff298f
commit b8527067d9
3 changed files with 6 additions and 3 deletions

View File

@ -5,8 +5,10 @@ exports.run = async (message, args) => {
message.channel.sendTyping();
if (args.length === 0 || !urlCheck(args[0])) return `${message.author.mention}, you need to provide a short URL to lengthen!`;
if (urlCheck(args[0])) {
const url = await fetch(args[0], { redirect: "manual" });
const url = await fetch(encodeURI(args[0]), { redirect: "manual" });
return url.headers.get("location") || args[0];
} else {
return `${message.author.mention}, that isn't a URL!`;
}
};

View File

@ -109,5 +109,7 @@
"alvin the chipmunk nightcore",
"braaaaap",
"Schmelf?",
"Troll"
"Troll",
"ay yo the pizza here",
"100 gecs"
]

View File

@ -2,7 +2,6 @@
const { Client } = require("eris");
const client = new Client(process.env.TOKEN, {
disableEvents: {
CHANNEL_CREATE: true,
CHANNEL_DELETE: true,
CHANNEL_UPDATE: true,
GUILD_BAN_REMOVE: true,