Quickfix deleted channels with feeds causing reconnect loop

This commit is contained in:
benji7425 2017-11-14 22:27:58 +00:00
parent f1c12c8a19
commit 68680d624f
4 changed files with 18 additions and 9 deletions

2
.gitignore vendored
View File

@ -1,6 +1,6 @@
update.sh
guilds.json
token.json
token.json*
log

View File

@ -1,5 +1,11 @@
# Changelog
## v3.1.2
### Fixed
- Deleted channels with feeds sending the bot into a reconnect loop
## v3.1.1
### Fixed

View File

@ -11,17 +11,20 @@ module.exports = class GuildData extends Core.BaseGuildData {
cachePastPostedLinks(guild) {
const promises = [];
this.feeds.forEach(feed =>
promises.push(
feed.updatePastPostedLinks(guild)
.catch(err => DiscordUtil.dateError(`Error reading history in ${err.path}`))
)
);
this.feeds.forEach(feed => {
if (guild.channels.get(feed.channelID))
promises.push(
feed.updatePastPostedLinks(guild)
.catch(err => DiscordUtil.dateError(`Error reading history in channel ${feed.channelID}: ${err.message || err}`)));
});
return Promise.all(promises);
}
checkFeeds(guild) {
this.feeds.forEach(feed => feed.fetchLatest(guild));
this.feeds.forEach(feed => {
if (guild.channels.get(feed.channelID))
feed.fetchLatest(guild);
});
}
};

View File

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