diff --git a/src/network/access/qhttp2connection.cpp b/src/network/access/qhttp2connection.cpp index 2839b3b0bde..331f908b42d 100644 --- a/src/network/access/qhttp2connection.cpp +++ b/src/network/access/qhttp2connection.cpp @@ -1900,7 +1900,7 @@ bool QHttp2Connection::acceptSetting(Http2::Settings identifier, quint32 newValu qCDebug(qHttp2ConnectionLog, "[%p] Adjusting initial window size for %zu streams by %d", this, size_t(m_streams.size()), delta); for (const QPointer &stream : std::as_const(m_streams)) { - if (!stream || !stream->isActive()) + if (!stream) continue; qint32 sum = 0; if (qAddOverflow(stream->m_sendWindow, delta, &sum)) {