Add default encoding to the launcher of Telnet when the charset is not set

This commit is contained in:
NI
2019-10-02 22:09:35 +08:00
parent da7f06f01b
commit 81a9424066

View File

@@ -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");
}
}