appleboy / drone-telegram

Drone plugin for sending Telegram notifications
MIT License
103 stars 29 forks source link

Unescape html entities #85

Closed dmlambea closed 4 years ago

dmlambea commented 4 years ago

Some characters, such as the apostrophe ('), are too common within commit messages, and they are getting sent as HTML entities that Telegram cannot render (' for the character ' ).

This PR unescapes all texts to make sure that such characters are sent as proper characters.

Fixes #50

appleboy commented 4 years ago

@dmlambea Thanks.