Просмотр исходного кода

fix Undefined property: stdClass::$streamSending

walkor 2 лет назад
Родитель
Сommit
944e31c129
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/Connection/TcpConnection.php

+ 1 - 1
src/Connection/TcpConnection.php

@@ -761,7 +761,7 @@ class TcpConnection extends ConnectionInterface implements JsonSerializable
                 }
             }
             if ($this->status === self::STATUS_CLOSING) {
-                if ($this->context->streamSending) {
+                if (!empty($this->context->streamSending)) {
                     return;
                 }
                 $this->destroy();