maybe it just needs time to work idk
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 43s

This commit is contained in:
Lee
2024-10-25 18:29:57 +01:00
parent 7e1d172b43
commit 9fb5317bc8
2 changed files with 17 additions and 12 deletions

View File

@ -162,10 +162,10 @@ app.use(
})
);
app.onStart(() => {
app.onStart(async () => {
console.log("Listening on port http://localhost:8080");
if (isProduction()) {
initDiscordBot();
await initDiscordBot();
}
});