Add default encoding to the launcher of Telnet when the charset is not set
This commit is contained in:
@@ -486,6 +486,6 @@ export class Command {
|
|||||||
}
|
}
|
||||||
|
|
||||||
launcher(config) {
|
launcher(config) {
|
||||||
return config.host + (config.charset ? "|" + config.charset : "");
|
return config.host + "|" + (config.charset ? config.charset : "utf-8");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user