소스 검색

Remove call to HttpURLConnection.setChunkedStreamingMode

Fixes #8
Miku AuahDark 3 년 전
부모
커밋
8b5ec7bf6a
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      src/android/java/org/love2d/luahttps/LuaHTTPS.java

+ 0 - 1
src/android/java/org/love2d/luahttps/LuaHTTPS.java

@@ -134,7 +134,6 @@ class LuaHTTPS {
         // Set post data
         if (postData != null && canSendData()) {
             connection.setDoOutput(true);
-            connection.setChunkedStreamingMode(0);
 
             try {
                 OutputStream out = connection.getOutputStream();