diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-07-27 16:22:41 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-07-27 16:22:41 +0300 |
commit | b3732e84b40490c0d21ae6f898f43f214120717f (patch) | |
tree | cff0e7a613fa284d5260a95c96ade1845c94494d /bbot/worker/worker.cxx | |
parent | 5972fbd56415b7fc9c62537738f69c633af5d9d4 (diff) |
Fix command logs UTF-8-sanitization
Diffstat (limited to 'bbot/worker/worker.cxx')
-rw-r--r-- | bbot/worker/worker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx index e436fa1..81204bd 100644 --- a/bbot/worker/worker.cxx +++ b/bbot/worker/worker.cxx @@ -152,7 +152,7 @@ run_cmd (tracer& t, text << s; } - to_utf8 (s, '?'); + to_utf8 (s, '?', codepoint_types::graphic, U"\n\r\t"); log += s; log += '\n'; |