@ -1,5 +1,11 @@
# Changelog
## v3.1.1
### Fixed
- Empty RSS feed crash
## v3.1.0
### Added
@ -77,16 +77,19 @@ module.exports = class FeedData {
return;
}
const latest = normaliseUrl(articles[0].link);
if (articles.length > 0) {
if (!this.cachedLinks.includes(latest)) {
this.cachedLinks.push(latest);
const channel = guild.channels.get(this.channelID),
role = guild.roles.get(this.roleID);
channel.send((role || "") + formatPost(articles[0]))
.catch(err => DiscordUtil.dateError(`Error posting in ${channel.id}: ${err.message || err}`));
});
@ -1,5 +1,5 @@
{
"version": "3.1.0",
"version": "3.1.1",
"main": "app/index.js",
"scripts": {
"postinstall": "cd ./discord-bot-core && npm install",