Browse Source

Merge pull request #353 from Arul-/patch-1

Fix for DELETE requests that keep the connection hanging
walkor 7 năm trước cách đây
mục cha
commit
8a4108a78b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Protocols/Http.php

+ 1 - 1
Protocols/Http.php

@@ -73,7 +73,7 @@ class Http
             $content_length = isset($match[1]) ? $match[1] : 0;
             return $content_length + strlen($header) + 4;
         }
-        return 0;
+        return $method === 'DELETE' ? strlen($header) + 4 : 0;
     }
 
     /**