From 9e062a7a33c684003f489b678df5486a261d1f76 Mon Sep 17 00:00:00 2001 From: xl Date: Tue, 7 Nov 2023 16:15:48 +0800 Subject: [PATCH] eee --- CoroutineClient.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/CoroutineClient.php b/CoroutineClient.php index e218686..826e73d 100644 --- a/CoroutineClient.php +++ b/CoroutineClient.php @@ -143,11 +143,8 @@ class CoroutineClient extends ClientAbstracts } if ($this->isGet()) { if (!empty($data)) $path .= '?' . $data; - } else { - $data = $this->mergeParams($data); - if (!empty($data)) { - $this->client->setData($data); - } + } else if (!empty($data)) { + $this->client->setData($data); } return $path; }