fix for remote host ports
This commit is contained in:
parent
3e9138e05a
commit
61796fbaee
@ -209,7 +209,8 @@ func (remoteHost *Host) GetPort() {
|
||||
}
|
||||
|
||||
func (remoteHost *Host) CombineHostNameWithPort() {
|
||||
if remoteHost.HostName == fmt.Sprintf("%s:%v", remoteHost.HostName, remoteHost.Port) {
|
||||
port := fmt.Sprintf(":%v", remoteHost.Port)
|
||||
if strings.Contains(remoteHost.HostName, port) {
|
||||
return
|
||||
}
|
||||
remoteHost.HostName = fmt.Sprintf("%s:%v", remoteHost.HostName, remoteHost.Port)
|
||||
|
Loading…
Reference in New Issue
Block a user