fix(whatsapp.gblib): Fix PRIVACY_STORE_MESSAGES param.

This commit is contained in:
Rodrigo Rodriguez 2024-05-14 19:23:12 -03:00
parent 61e5e9c434
commit b22c3425fa

View file

@ -118,11 +118,11 @@ export class GBServer {
});
process.on('uncaughtException', (err, p) => {
GBLog.error(`UNCAUGHT_EXCEPTION: ${JSON.stringify(err)}`);
GBLog.error(`UNCAUGHT_EXCEPTION: ${JSON.stringify(err, Object.getOwnPropertyNames(err))}`);
});
process.on('unhandledRejection', (err, p) => {
GBLog.error(`UNHANDLED_REJECTION: ${JSON.stringify(err)}`);
GBLog.error(`UNHANDLED_REJECTION: ${JSON.stringify(err, Object.getOwnPropertyNames(err))}`);
});
// Creates working directory.