Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion API_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
368be7755d15d02a1038325c7d159703b01662b0
71737d035f4f29d33eda896c7c116dc4b352f158
4 changes: 3 additions & 1 deletion lib/HttpClient/CurlClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,9 @@ private function initCurlHandle()
private function closeCurlHandle()
{
if (null !== $this->curlHandle) {
\curl_close($this->curlHandle);
if (PHP_VERSION_ID < 80000) {
\curl_close($this->curlHandle);
}
$this->curlHandle = null;
}
}
Expand Down
Loading