Fixed detection of links in all channels

This commit is contained in:
benji7425 2017-01-08 06:44:08 +00:00
parent 6cab2ebab8
commit 218d2ec40f
1 changed files with 8 additions and 7 deletions

View File

@ -49,14 +49,15 @@ var DiscordClient = {
},
onMessage: function (user, userID, channelID, message) {
//check if the message is in the right channel, contains a link, and is not the latest link from the rss feed
if (channelID === Config.channelID && Links.messageContainsLink(message) && (message !== Links.latestFromFeedlatestFeedLink))
if (channelID === Config.channelID && Links.messageContainsLink(message) && (message !== Links.latestFromFeedlatestFeedLink)) {
Log.event("Detected posted link in this message: " + message, "Discord.io");
//extract the url from the string, and cache it
Uri.withinString(message, function (url) {
Links.cache(Links.standardise(url));
return url;
});
//extract the url from the string, and cache it
Uri.withinString(message, function (url) {
Links.cache(Links.standardise(url));
return url;
});
}
},
checkPastMessagesForLinks: function () {
var limit = 100;
@ -170,7 +171,7 @@ var Links = {
Links.cache(latestLink); //make sure the link is cached, so it doesn't get posted again
}
Links.latestFeedLink = latestLink; //ensure our latest feed link variable is up to date, so we can track when the feed updates
}
}