diff --git a/netwerk/protocol/http/nsHttpConnectionMgr.cpp b/netwerk/protocol/http/nsHttpConnectionMgr.cpp index 44bdac29f4aa..6e9ef20b213f 100644 --- a/netwerk/protocol/http/nsHttpConnectionMgr.cpp +++ b/netwerk/protocol/http/nsHttpConnectionMgr.cpp @@ -1241,6 +1241,11 @@ bool nsHttpConnectionMgr::AtActiveConnectionLimit(nsConnectionEntry* ent, uint32_t caps) { nsHttpConnectionInfo* ci = ent->mConnInfo; uint32_t totalCount = TotalActiveConnections(ent); + + if (ci->IsHttp3()) { + return totalCount > 0; + } + uint32_t maxPersistConns = MaxPersistConnections(ent); LOG(