1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-13 10:58:00 +03:00

fixed .ssh/config port binding parsing - fixes #5906

This commit is contained in:
Eugene Pankov 2022-03-08 20:47:21 +01:00
parent 32170ec640
commit b31b500727
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -76,8 +76,8 @@ export class OpenSSHImporter extends SSHProfileImporter {
target.forwardedPorts.push({
type: PortForwardType.Local,
description: value,
host: bind.split(':')[0] ?? '127.0.0.1',
port: parseInt(bind.split(':')[1] ?? bind),
host: bind.includes(':') ? bind.split(':')[0] : '127.0.0.1',
port: parseInt(bind.split(':').at(-1)),
targetAddress: tgt.split(':')[0],
targetPort: parseInt(tgt.split(':')[1]),
})
@ -87,8 +87,8 @@ export class OpenSSHImporter extends SSHProfileImporter {
target.forwardedPorts.push({
type: PortForwardType.Dynamic,
description: value,
host: bind.split(':')[0] ?? '127.0.0.1',
port: parseInt(bind.split(':')[1] ?? bind),
host: bind.includes(':') ? bind.split(':')[0] : '127.0.0.1',
port: parseInt(bind.split(':').at(-1)),
targetAddress: '',
targetPort: 22,
})