Merge branch 'master' of ssh://numinibsd/git/base/enigma-bbs into 0.0.11-beta

This commit is contained in:
Bryan Ashby 2019-11-20 19:11:33 -07:00
commit 2b7033a017
No known key found for this signature in database
GPG Key ID: B49EB437951D2542
2 changed files with 1 additions and 2 deletions

View File

@ -134,7 +134,6 @@ exports.getModule = class BBSLinkModule extends MenuModule {
host : self.config.host, host : self.config.host,
}; };
let clientTerminated;
let dataOut; let dataOut;
self.client.term.write(resetScreen()); self.client.term.write(resetScreen());

View File

@ -18,7 +18,7 @@ function ansiDiscoverHomePosition(client, cb) {
// think of home as 0,0. If this is the case, we need to offset // think of home as 0,0. If this is the case, we need to offset
// our positioning to accommodate for such. // our positioning to accommodate for such.
// //
const done = function(err) { const done = (err) => {
client.removeListener('cursor position report', cprListener); client.removeListener('cursor position report', cprListener);
clearTimeout(giveUpTimer); clearTimeout(giveUpTimer);
return cb(err); return cb(err);