fix: baileys and chatwoot

This commit is contained in:
KokeroO
2025-10-29 22:52:20 -03:00
parent c555048783
commit 066e060b86
14 changed files with 618 additions and 819 deletions

View File

@@ -26,8 +26,8 @@ import cors from 'cors';
import express, { json, NextFunction, Request, Response, urlencoded } from 'express';
import { join } from 'path';
function initWA() {
waMonitor.loadInstance();
async function initWA() {
await waMonitor.loadInstance();
}
async function bootstrap() {
@@ -159,7 +159,9 @@ async function bootstrap() {
server.listen(httpServer.PORT, () => logger.log(httpServer.TYPE.toUpperCase() + ' - ON: ' + httpServer.PORT));
initWA();
initWA().catch((error) => {
logger.error('Error loading instances: ' + error);
});
onUnexpectedError();
}