From 121642e825618b31027cd464dd556f5e92354309 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Tue, 11 Jan 2022 15:42:55 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"=E6=94=B9=E5=90=8D"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit fdf58326 --- AsyncClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AsyncClient.php b/AsyncClient.php index 090fd02..5edffb3 100644 --- a/AsyncClient.php +++ b/AsyncClient.php @@ -108,7 +108,7 @@ class AsyncClient extends ClientAbstracts { $array = $this->_parseHeaders($path); - $this->client->send(implode("\r\n", $array) . "\r\n\r\n" . $content); + $this->client->send(implode("\r\n", $array) . "\r\n\r\n" . $content. "\r\n\r\n"); $receive = $this->client->recv(); Kiri::getDi()->get(Logger::class)->debug(implode("\r\n", $array) . "\r\n\r\n" . $content);