pedroslopez / whatsapp-web.js

A WhatsApp client library for NodeJS that connects through the WhatsApp Web browser app
https://wwebjs.dev
Apache License 2.0
15.18k stars 3.62k forks source link

Fix vote_update event #3207

Closed BenyFilho closed 2 months ago

BenyFilho commented 2 months ago

PR Details

Fixing poll_update event to work in webpack-exodus

Description

Fixing poll_update event to work in webpack-exodus

Related Issue

Motivation and Context

How Has This Been Tested

SENDING THE POLL

const poll = new Poll('Which pet do you prefer?', ['Cat', 'Dog']);
const msgPoll = await client.sendMessage(chatId, poll);

LISTENING THE EVENT

client.on('vote_update', (vote) => {
      console.log(vote);
});

Types of changes

Checklist