Merge pull request #1353 from aspnet/release/2.1

Fix incorrect content-type (#1347)
This commit is contained in:
BrennanConroy 2018-01-25 10:39:58 -08:00 committed by GitHub
commit 95d8ec8fdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ namespace Microsoft.AspNetCore.Sockets
// The connection was disposed
context.Response.StatusCode = StatusCodes.Status404NotFound;
context.Response.ContentType = "plain/text";
context.Response.ContentType = "text/plain";
return;
}