Remove content type from LongPollingTransport

This commit is contained in:
David Fowler 2017-06-15 07:32:27 +02:00
parent 6576bb0ea4
commit dbb438dc08
1 changed files with 0 additions and 1 deletions

View File

@ -236,7 +236,6 @@ export class LongPollingTransport implements ITransport {
}
const headers = new Map<string, string>();
headers.set("Content-Type", "application/vnd.microsoft.aspnetcore.endpoint-messages.v1+text");
async function send(httpClient: IHttpClient, url: string, data: any): Promise<void> {
await httpClient.post(url, data, headers);