Merge pull request #9360 from Mxmilu666/master

Fix Connection error while opening WinSCP session using IPV6 address
This commit is contained in:
Eugene
2023-12-24 11:21:42 +01:00
committed by GitHub

View File

@@ -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
}