* Fix crash with JuiceSSH
* Lots of WIP on FSE * Various notes & fixes
This commit is contained in:
@@ -67,6 +67,7 @@ function ClientTerminal(output) {
|
||||
// XTERM
|
||||
// * PuTTY
|
||||
// LINUX
|
||||
// * JuiceSSH - also via TERM=
|
||||
// QNX
|
||||
// SCREEN
|
||||
// * ConnectBot
|
||||
@@ -134,6 +135,9 @@ ClientTerminal.prototype.write = function(s, convertLineFeeds) {
|
||||
this.output.write(this.iconv.encode(s, this.outputEncoding));
|
||||
};
|
||||
*/
|
||||
|
||||
// :TODO: probably need to update these to convert IAC (0xff) -> IACIAC (escape it)
|
||||
|
||||
ClientTerminal.prototype.write = function(s, convertLineFeeds) {
|
||||
this.output.write(this.encode(s, convertLineFeeds));
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user