diff --git a/backend/src/services/WbotServices/StartAllWhatsAppsSessions.ts b/backend/src/services/WbotServices/StartAllWhatsAppsSessions.ts index 212c435..8a57695 100644 --- a/backend/src/services/WbotServices/StartAllWhatsAppsSessions.ts +++ b/backend/src/services/WbotServices/StartAllWhatsAppsSessions.ts @@ -8,7 +8,7 @@ import Whatsapp from "../../models/Whatsapp"; import ListWhatsAppsService from "../WhatsappService/ListWhatsAppsService"; import { StartWhatsAppSession } from "./StartWhatsAppSession"; const fs = require('fs') - + import "../../helpers/SchedulingNotifySendMessage" import "../../helpers/WhoIsOnlineMonitor" @@ -20,13 +20,13 @@ import { createSessionDir } from "../../helpers/CreateSessionDir"; let counter = 0 -export const StartAllWhatsAppsSessions = async (): Promise => { +export const StartAllWhatsAppsSessions = async (): Promise => { const cacheLength = await cacheSize() console.log('cacheSize: ', cacheLength) - await loadSchedulesCache() + if (cacheLength == 0) { console.log('Loading from cache...') @@ -34,9 +34,10 @@ export const StartAllWhatsAppsSessions = async (): Promise => { await loadContactsCache() await loadTicketsCache() } - + + await loadSchedulesCache() // await loadWhatsappCache() - + createSessionDir() delRestoreControllFile() @@ -107,6 +108,6 @@ export const StartAllWhatsAppsSessions = async (): Promise => { }); } - + };