diff --git a/tabby-ssh/src/services/ssh.service.ts b/tabby-ssh/src/services/ssh.service.ts index 8baace69..f8a3b0fc 100644 --- a/tabby-ssh/src/services/ssh.service.ts +++ b/tabby-ssh/src/services/ssh.service.ts @@ -37,7 +37,11 @@ export class SSHService { if (password) { uri += ':' + encodeURIComponent(password) } - uri += `@${profile.options.host}:${profile.options.port}${cwd ?? '/'}` + if (profile.options.host.includes(':')) { + uri += `@[${profile.options.host}]:${profile.options.port}${cwd ?? '/'}` + }else { + uri += `@${profile.options.host}:${profile.options.port}${cwd ?? '/'}` + } return uri }