From: Philipp Date: Tue, 24 Aug 2021 22:40:15 +0000 (+0200) Subject: Fix HTTPClient X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f01d882e6cfaba26ae85e5d2789971f5393bee00;p=friendica.git Fix HTTPClient --- diff --git a/src/Network/HTTPClient.php b/src/Network/HTTPClient.php index cd1d9e46b3..f4653628ff 100644 --- a/src/Network/HTTPClient.php +++ b/src/Network/HTTPClient.php @@ -131,10 +131,9 @@ class HTTPClient implements IHTTPClient try { switch ($method) { case 'get': - $response = $this->client->get($url, $conf); - break; case 'head': - $response = $this->client->head($url, $conf); + case 'post': + $response = $this->client->$method($url, $conf); break; default: throw new TransferException('Invalid method');