Removed "link sent" detection when it sent it itself

This commit is contained in:
benji7425 2016-11-01 00:24:34 +00:00
parent 8ea6a8169d
commit 2a1ced73cb

View file

@ -52,8 +52,8 @@ Dns.resolve("discordapp.com", function (err) {
bot.on("message", function (user, userID, channelID, message) {
//check if the message is a link, cache it if it is
if (linkRegExp.test(message)) {
logEvent("Detected user posted link: " + message);
if (linkRegExp.test(message) && (message !== latestFeedLink)) {
logEvent("Detected posted link: " + message);
cacheLink(Uri.withinString(message, function (url) { return url; }));
}
});