diff --git a/lib/internal/http2/core.js b/lib/internal/http2/core.js index 97a6a5b4f1f89c..bbbc3c21300a74 100644 --- a/lib/internal/http2/core.js +++ b/lib/internal/http2/core.js @@ -1896,7 +1896,7 @@ class Http2Stream extends Duplex { } // TODO(mcollina): remove usage of _*State properties - if (!this.writable) { + if (this._writableState.finished) { if (!this.readable && this.closed) { this.destroy(); return;