Briuor / wbm

wbm is an unofficial API to send bulk messages in whatsapp.
MIT License
203 stars 64 forks source link

[bug] special character in message #10

Closed AliMD closed 3 years ago

AliMD commented 3 years ago

Thank you so much for making this greate tools I cant sent + in the message! Any solution?

Briuor commented 3 years ago

Thank you for this issue, i released a fix for it. Update your package

npm update wbm

and test again. I was using the method encodeURI() to encode the message and send as an url parameter, but this method don't encode characters like '+', '&', '=', i changed to encodeURIComponent() that encode all characters.