Skip to content

Commit 3676cb3

Browse files
committed
when a file was Uploaded using httpclient content-type was not right (#636)
Issue: 99759
1 parent 069eb34 commit 3676cb3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

java/src/main/java/com/genexus/internet/HttpContext.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1788,7 +1788,8 @@ public boolean isRestService()
17881788
{"svg" , "image/svg+xml"},
17891789
{"tgz" , "application/x-compressed"},
17901790
{"zip" , "application/x-zip-compressed"},
1791-
{"gz" , "application/x-gzip"}
1791+
{"gz" , "application/x-gzip"},
1792+
{"json" , "application/json"}
17921793
};
17931794

17941795
public boolean willRedirect()

0 commit comments

Comments
 (0)