Updates
Release rolling / release (push) Successful in 9m30s

This commit is contained in:
Raven Scott
2026-08-13 00:13:03 -04:00
parent 1187e30cf6
commit 15afc148d7
51 changed files with 8751 additions and 668 deletions
+2 -10
View File
@@ -166,16 +166,8 @@ function bareIrcCreateTuiApp(ctx, client) {
} else if (cmd === 'disconnect') this.client.quit('Disconnect')
else if (cmd === 'reconnect') {
try {
if (typeof ctx.bareOsTlsConnect === 'function' && this.client.opts) {
var spec = this.client.opts
var sock =
spec.tls === false
? ctx.bareOsTelnetConnect(spec.host, spec.port, {})
: ctx.bareOsTlsConnect(spec.host, spec.port, {
servername: spec.host,
rejectUnauthorized: true
})
this.client.attach(sock)
if (this.client.opts) {
this.client.attach(bareIrcDial(ctx, this.client.opts))
this.status = 'reconnecting\u2026'
}
} catch (err) {