瀏覽代碼

fix Undefined property: stdClass::$streamSending

walkor 2 年之前
父節點
當前提交
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();