alechkos

Results 143 comments of alechkos

@felipeaffonsobsi > Não consigo utilizar e ler o voto do usuário. Alguém pode me ajudar? https://github.com/pedroslopez/whatsapp-web.js/pull/2596#pr-issues

@opssemnik > tagging @alechkos as he is the creator of the waveform feature it's not me, i just brought it from another lib

@bruninoit > sending photo in channels has some problems wanna tell me what they are?

@devsakae > One question, tho. How to publish media? sending media is still doesn't work

@devsakae @bruninoit Thank you for testing, `sendMessage` has been fixed and now supports these message types to send: text, image, sticker, gif, or video

@devsakae > how I install the latest changes? ```powershell npm install github:alechkos/whatsapp-web.js#channels ```

@tobimori > I get an error when trying to run `client.getChats()` Thank you, fixed

@fukumori > Could you add inviteLink on response of Channel What do you mean?

@themazim > How can one delete a message in a channel? > > Seems deleting the message by id doesn't work. While I do not get an error, the message...

@themazim > How can one delete a message in a channel? You can do it just like in regular chat: ```js // ... const msg = await client.getMessageById(msgId); await msg.delete(true);...