You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to https://tools.ietf.org/html/rfc6713, media types like application/x-gzip should not be used any more, since they are non standard.
However, in the MediaType class of guava, GZIP is defined as this MediaType GZIP = createConstant(APPLICATION_TYPE, "x-gzip");. In my opinion, this encourages the usage of "deprecated" mimetypes in a lot of applications.
Simply replacing the current constant might be a problem though, so it make make sense to introduce application/gzip as an additional mimetype.
The text was updated successfully, but these errors were encountered:
According to https://tools.ietf.org/html/rfc6713, media types like application/x-gzip should not be used any more, since they are non standard.
However, in the MediaType class of guava, GZIP is defined as this
MediaType GZIP = createConstant(APPLICATION_TYPE, "x-gzip");
. In my opinion, this encourages the usage of "deprecated" mimetypes in a lot of applications.Simply replacing the current constant might be a problem though, so it make make sense to introduce application/gzip as an additional mimetype.
The text was updated successfully, but these errors were encountered: