fix for remote host ports
This commit is contained in:
parent
3e9138e05a
commit
02321870b5
@ -209,7 +209,8 @@ func (remoteHost *Host) GetPort() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (remoteHost *Host) CombineHostNameWithPort() {
|
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
|
return
|
||||||
}
|
}
|
||||||
remoteHost.HostName = fmt.Sprintf("%s:%v", remoteHost.HostName, remoteHost.Port)
|
remoteHost.HostName = fmt.Sprintf("%s:%v", remoteHost.HostName, remoteHost.Port)
|
||||||
|
Loading…
Reference in New Issue
Block a user