We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My terminal locale is UTF-8, my dfrotz puts plain Unicode (not ASCII) output, so the bot encodes Unicode twice into gibberish.
Here's a patch: src/MessageHandler.js, like 310
src/MessageHandler.js
- var final = stripAnsi(utf8.encode(this.compiledOutput)); + var final = stripAnsi(this.compiledOutput);
The text was updated successfully, but these errors were encountered:
Thanks for submitting a bug, this is good to know, and I will try to address it when I can.
The UTF-8 encoding is necessary for non-UTF-8 locale terminals, so there will need to be some sort of locale checking involved in this as well.
Sorry, something went wrong.
ava-cassiopeia
No branches or pull requests
My terminal locale is UTF-8, my dfrotz puts plain Unicode (not ASCII) output, so the bot encodes Unicode twice into gibberish.
Here's a patch:
src/MessageHandler.js
, like 310The text was updated successfully, but these errors were encountered: