diff --git a/wchat/common/HttpClient.php b/wchat/common/HttpClient.php index 8eca61d..79c9846 100644 --- a/wchat/common/HttpClient.php +++ b/wchat/common/HttpClient.php @@ -333,7 +333,7 @@ class HttpClient if (strpos($this->host, ':') !== false) { [$this->host, $this->port] = explode(':', $this->host); if ($this->checkIsIp($this->host)) { - return '/' . $hostAndUrls; + return $hostAndUrls; } } @@ -343,7 +343,7 @@ class HttpClient $this->host = System::gethostbyname($this->host); - return '/' . $hostAndUrls; + return $hostAndUrls; } /**