diff --git a/ui/commands/telnet.js b/ui/commands/telnet.js index e15fe70..ed5efba 100644 --- a/ui/commands/telnet.js +++ b/ui/commands/telnet.js @@ -486,6 +486,6 @@ export class Command { } launcher(config) { - return config.host + (config.charset ? "|" + config.charset : ""); + return config.host + "|" + (config.charset ? config.charset : "utf-8"); } }