Fix incorrect content-type (#1347)

This commit is contained in:
BrennanConroy 2018-01-25 10:38:27 -08:00 committed by GitHub
parent 215123819a
commit 96a3a03de8
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;
}