diff --git a/server.js b/server.js index a53825f..ef844cc 100644 --- a/server.js +++ b/server.js @@ -56,12 +56,13 @@ const bot = new Client({ intents: [ 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(); - }); + try { + mongoose.connect(mongoDB); + } catch (error) { + console.log('Server: Error: There was an Error with the connection to the database, attempting to restart it.', err) + connectToDB(); + } + } bot.on('ready', () =>