We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6efa879 commit f07166fCopy full SHA for f07166f
src/api/integrations/channel/whatsapp/whatsapp.baileys.service.ts
@@ -646,6 +646,11 @@ export class BaileysStartupService extends ChannelStartupService {
646
const log = `Baileys version: ${version.join('.')}`;
647
this.logger.info(log);
648
649
+ const error = baileysVersion?.error ?? null;
650
+ if (error) {
651
+ this.logger.error(`Fetch latest WaWeb version error: ${error.message}`);
652
+ }
653
+
654
this.logger.info(`Group Ignore: ${this.localSettings.groupsIgnore}`);
655
656
let options;
0 commit comments