From 52a85e4f368a6509a4f0e7d63537ac07d507564b Mon Sep 17 00:00:00 2001 From: Eugene Date: Wed, 8 Jan 2025 18:44:00 +0100 Subject: [PATCH] lint --- tabby-ssh/src/session/ssh.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-ssh/src/session/ssh.ts b/tabby-ssh/src/session/ssh.ts index 271f17ec..4acef27f 100644 --- a/tabby-ssh/src/session/ssh.ts +++ b/tabby-ssh/src/session/ssh.ts @@ -265,7 +265,7 @@ export class SSHSession { const argv = shellQuote.parse(this.profile.options.proxyCommand) transport = await russh.SshTransport.newCommand(argv[0], argv.slice(1)) } else if (this.jumpChannel) { - transport = await russh.SshTransport.newSshChannel(await this.jumpChannel.take()) + transport = await russh.SshTransport.newSshChannel(this.jumpChannel.take()) this.jumpChannel = null } else if (this.profile.options.socksProxyHost) { this.emitServiceMessage(colors.bgBlue.black(' Proxy ') + ` Using ${this.profile.options.socksProxyHost}:${this.profile.options.socksProxyPort}`)