Fix empty RSS feed crash

This commit is contained in:
benji7425 2017-11-14 01:31:42 +00:00
parent 2e985ad5fa
commit f3c3e57e41
3 changed files with 17 additions and 8 deletions

View file

@ -1,5 +1,11 @@
# Changelog # Changelog
## v3.1.1
### Fixed
- Empty RSS feed crash
## v3.1.0 ## v3.1.0
### Added ### Added

View file

@ -77,16 +77,19 @@ module.exports = class FeedData {
return; return;
} }
const latest = normaliseUrl(articles[0].link); if (articles.length > 0) {
if (!this.cachedLinks.includes(latest)) { const latest = normaliseUrl(articles[0].link);
this.cachedLinks.push(latest);
const channel = guild.channels.get(this.channelID), if (!this.cachedLinks.includes(latest)) {
role = guild.roles.get(this.roleID); this.cachedLinks.push(latest);
channel.send((role || "") + formatPost(articles[0])) const channel = guild.channels.get(this.channelID),
.catch(err => DiscordUtil.dateError(`Error posting in ${channel.id}: ${err.message || err}`)); role = guild.roles.get(this.roleID);
channel.send((role || "") + formatPost(articles[0]))
.catch(err => DiscordUtil.dateError(`Error posting in ${channel.id}: ${err.message || err}`));
}
} }
}); });
} }

View file

@ -1,5 +1,5 @@
{ {
"version": "3.1.0", "version": "3.1.1",
"main": "app/index.js", "main": "app/index.js",
"scripts": { "scripts": {
"postinstall": "cd ./discord-bot-core && npm install", "postinstall": "cd ./discord-bot-core && npm install",