Fix Stuff

This commit is contained in:
Daniel Odendahl Jr
2017-06-09 00:32:03 +00:00
parent c26f048911
commit 212ed27e3b
49 changed files with 385 additions and 396 deletions
+2 -1
View File
@@ -48,7 +48,8 @@ module.exports = class GithubCommand extends Command {
body.language, true);
return msg.embed(embed);
} catch (err) {
return msg.say(err.message);
if (err.message === '404 Not Found') return msg.say('Repo Not Found.');
else throw err;
}
}
};