Describe the bug
I'm trying to simulate broadcast submissions as documented but without success
To Reproduce
-- trying to update status:
await waSocketService.sock.sendMessage(
'status@broadcast',
{ text: 'This is a test' }, {
backgroundColor: '#315575',
font: 3,
statusJidList: ['123@s.whatsapp.net'],
broadcast: true });
-- trying to send to broadcast list(it was created on the device):
await waSocketService.sock.sendMessage('{timestamp}@broadcast',
{ text: 'hello world' }, { broadcast: true });
I did my tests based on this example in the documentation:
sock.sendMessage(jid, {image: {url: url}, caption: caption}, {backgroundColor : backgroundColor, font : font, statusJidList: statusJidList, broadcast : true})
Is the feature actually broken or am I implementing something wrong?
Describe the bug
I'm trying to simulate broadcast submissions as documented but without success
To Reproduce
I did my tests based on this example in the documentation:
Is the feature actually broken or am I implementing something wrong?