We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad8775e commit 0575e66Copy full SHA for 0575e66
spring-web/src/main/java/org/springframework/http/codec/protobuf/ProtobufCodecSupport.java
@@ -34,7 +34,8 @@ public abstract class ProtobufCodecSupport {
34
static final List<MimeType> MIME_TYPES = Collections.unmodifiableList(
35
Arrays.asList(
36
new MimeType("application", "x-protobuf"),
37
- new MimeType("application", "octet-stream")));
+ new MimeType("application", "octet-stream"),
38
+ new MimeType("application", "vnd.google.protobuf")));
39
40
static final String DELIMITED_KEY = "delimited";
41
0 commit comments