diff --git a/feed-bot.js b/feed-bot.js index 77b9811..cc070b2 100644 --- a/feed-bot.js +++ b/feed-bot.js @@ -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; })); } });