Skip to content

Commit

Permalink
Add default encoding to the launcher of Telnet when the charset is no…
Browse files Browse the repository at this point in the history
…t set
  • Loading branch information
NI committed Oct 2, 2019
1 parent da7f06f commit 81a9424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/commands/telnet.js
Expand Up @@ -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");
}
}

0 comments on commit 81a9424

Please sign in to comment.