mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 13:54:39 +01:00
Terminate generators when YieldReturnValue is yielded
This commit is contained in:
parent
5b83cd9322
commit
f31af1d645
@ -69,7 +69,7 @@ final class Coroutine implements Promise
|
||||
if (!$yielded instanceof Promise) {
|
||||
if ($yielded instanceof \YieldReturnValue) {
|
||||
$this->resolve($yielded->getReturn());
|
||||
|
||||
$this->generator->next();
|
||||
return;
|
||||
}
|
||||
if (!$this->generator->valid()) {
|
||||
@ -115,6 +115,7 @@ final class Coroutine implements Promise
|
||||
if ($yielded instanceof \YieldReturnValue) {
|
||||
$this->resolve($yielded->getReturn());
|
||||
$this->onResolve = null;
|
||||
$this->generator->next();
|
||||
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user