Cesar
Cesar
Explore posts from servers
DIAdiscord.js - Imagine an app
Created by Cesar on 2/6/2024 in #djs-questions
Bot permissions
No description
32 replies
DIAdiscord.js - Imagine an app
Created by Cesar on 1/31/2024 in #djs-questions
Hosting on Deno Deploy
I'm hosting my bot on Deno Deploy https://deno.com/deploy it's working great but after some time it goes offline. I tried:
client.on('disconnect', () =>
{
console.log('Bot is disconnected, attempting to reconnect...');
client.login('...').catch(console.error);
});


client.login('...');
client.on('disconnect', () =>
{
console.log('Bot is disconnected, attempting to reconnect...');
client.login('...').catch(console.error);
});


client.login('...');
but the 'disconnect' event is not getting fired. What else could i try to make it keep online?
57 replies