Bugfix
This commit is contained in:
parent
afbc6a3e0e
commit
c8635c12d6
@ -97,7 +97,7 @@ abstract class AbstractAPIFactory extends AsyncConstruct
|
||||
public function __call(string $name, array $arguments)
|
||||
{
|
||||
$yielded = Tools::call($this->__call_async($name, $arguments));
|
||||
$async = !$this->lua && (\end($arguments)['async'] ?? ($this->async && $name !== 'loop'));
|
||||
$async = !$this->lua && ((is_array(\end($arguments)) ? \end($arguments) : [])['async'] ?? ($this->async && $name !== 'loop'));
|
||||
if ($async) {
|
||||
return $yielded;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user