We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c37a2 commit ffa8033Copy full SHA for ffa8033
src/OSS/Http/RequestCore.php
@@ -844,7 +844,7 @@ public function send_request($parse = false)
844
$this->response = curl_exec($curl_handle);
845
846
if ($this->response === false) {
847
- throw new RequestCore_Exception('cURL resource: ' . (string)$curl_handle . '; cURL error: ' . curl_error($curl_handle) . ' (' . curl_errno($curl_handle) . ')');
+ throw new RequestCore_Exception('cURL error: ' . curl_error($curl_handle) . ' (' . curl_errno($curl_handle) . ')');
848
}
849
850
$parsed_response = $this->process_response($curl_handle, $this->response);
0 commit comments