Skip to content

Commit

Permalink
Reworked MultiPart MediaType for Meros to work
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Sep 19, 2022
1 parent d468fc9 commit fef8097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HotChocolate/AspNetCore/src/AspNetCore/ContentType.cs
Expand Up @@ -8,7 +8,7 @@ internal static class ContentType
private const string _boundary = "boundary=\"-\"";
public const string GraphQL = $"{Types.Application}/{SubTypes.GraphQL};{_utf8}";
public const string Json = $"{Types.Application}/{SubTypes.Json};{_utf8}";
public const string MultiPartMixed = $"{Types.MultiPart}/{SubTypes.Mixed};{_boundary};{_utf8}";
public const string MultiPartMixed = $"{Types.MultiPart}/{SubTypes.Mixed};{_utf8};{_boundary}";
public const string GraphQLResponse = $"{Types.Application}/{SubTypes.GraphQLResponse};{_utf8}";
public const string EventStream = $"{Types.Text}/{SubTypes.EventStream};{_utf8}";

Expand Down

0 comments on commit fef8097

Please sign in to comment.