From 2a01ddce6a069d629d1df030d3dca710673c4b58 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Thu, 8 May 2025 15:33:50 +0200 Subject: [PATCH] Check the 3rd space too, this is very hacky --- quinn-proto/src/connection/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/quinn-proto/src/connection/mod.rs b/quinn-proto/src/connection/mod.rs index 9a6e8e077..7aa21e056 100644 --- a/quinn-proto/src/connection/mod.rs +++ b/quinn-proto/src/connection/mod.rs @@ -850,6 +850,9 @@ impl Connection { ) || matches!( self.space_ready_to_send(path_id, space_id.next(), builder.buf, close, now), SendReady::Frames(can_send) if !can_send.is_empty(), + ) || matches!( + self.space_ready_to_send(path_id, space_id.next().next(), builder.buf, close, now), + SendReady::Frames(can_send) if !can_send.is_empty(), )) { // We can append/coalesce the next packet into the current