Skip to content

Commit 8b5ec7b

Browse files
committedMay 13, 2022
Remove call to HttpURLConnection.setChunkedStreamingMode
Fixes #8
1 parent cc33bda commit 8b5ec7b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

‎src/android/java/org/love2d/luahttps/LuaHTTPS.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ public boolean request() {
134134
// Set post data
135135
if (postData != null && canSendData()) {
136136
connection.setDoOutput(true);
137-
connection.setChunkedStreamingMode(0);
138137

139138
try {
140139
OutputStream out = connection.getOutputStream();

0 commit comments

Comments
 (0)
Please sign in to comment.