From de815dd99cfd95e2759080a7d27535b70b6544b4 Mon Sep 17 00:00:00 2001 From: Maksym Vorobiov Date: Mon, 10 Feb 2020 16:19:48 +0200 Subject: [PATCH] Fixed condition for finishing transfer of response --- actix-http/src/h1/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-http/src/h1/utils.rs b/actix-http/src/h1/utils.rs index 89013129a..c44925c7a 100644 --- a/actix-http/src/h1/utils.rs +++ b/actix-http/src/h1/utils.rs @@ -86,7 +86,7 @@ where continue; } - if body_done { + if !body_done { if body_ready { continue; } else {