From 406c37640899914b44a2ac63fdbb0044f6aa6f07 Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Tue, 28 Feb 2023 22:12:00 +0000 Subject: [PATCH] Error handling: DB connection & RustCommits --- lib.js | 4 ++-- server.js | 11 ++++++++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/lib.js b/lib.js index ce530fd..5d11849 100644 --- a/lib.js +++ b/lib.js @@ -582,6 +582,7 @@ class rustCommits for(var j = 0; j e.id).indexOf(this.channels[j].lastid); Res.splice(Pos, Res.length-Pos); for(var i = Res.length-1; i>0; i--) @@ -590,7 +591,6 @@ class rustCommits { send( { - Author:Res[i].user.name, Avatar:Res[i].user.avatar, Time:Res[i].created.split("T")[1]+ " of "+ Res[i].created.split("T")[0], @@ -644,7 +644,7 @@ class rustCommits if(!content||!content.embeds||!content.embeds.length>0) return 0; return parseInt(content.embeds[0].fields[1].value) }) - channel.lastid = lastid; + channel['lastid'] = lastid; } } return channels; diff --git a/server.js b/server.js index 0cc3a0e..5f88136 100644 --- a/server.js +++ b/server.js @@ -56,10 +56,19 @@ const bot = new Client({ intents: [ }); bot.login(process.env.discord_token); +function connectToDB() +{ + mongoose.connect(mongoDB) + .catch(err=> + { + console.log('Server: Error: There was an Error with the connection to the database, attempting to restart it.', err) + connectToDB(); + }); +} + bot.on('ready', () => { mongoose.Promise = global.Promise; - mongoose.connect(mongoDB).catch(err=>console.log(err)); console.log(`--------------------------\n ${bot.user.tag.split('#')[0]} \n Ready \n on `+bot.guilds.cache.size+" guilds \n serving "+bot.users.cache.size+" users \n--------------------------") bot.user.setPresence({ activities: [{ name: `!help`, type: ActivityType.Listening }],