Ver código fonte

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

Fix for DELETE requests that keep the connection hanging
walkor 7 anos atrás
pai
commit
8a4108a78b
1 arquivos alterados com 1 adições e 1 exclusões
  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;
     }
 
     /**