You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Curl.php lines 94 and following should be replaced with:
if (!isset($this->loop_timer)) {
$this->loop_timer = $this->loop->addPeriodicTimer($this->timeout, function() {
$this->run();
if (!($this->client->run() || $this->client->has())) { $this->loop->cancelTimer($this->loop_timer);
$this->loop_timer = null;
}
});
}
The text was updated successfully, but these errors were encountered:
Curl.php lines 94 and following should be replaced with:
if (!isset($this->loop_timer)) {
$this->loop_timer = $this->loop->addPeriodicTimer($this->timeout, function() {
$this->run();
if (!($this->client->run() || $this->client->has())) {
$this->loop->cancelTimer($this->loop_timer);
$this->loop_timer = null;
}
});
}
The text was updated successfully, but these errors were encountered: