mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
fix(web): open access error page content type
This commit is contained in:
parent
ec6d3d35c2
commit
c428086ccb
|
@ -1,6 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
|
@ -29,7 +28,7 @@ namespace BililiveRecorder.Web
|
||||||
if (sourceIpNotLan(context) || haveReverseProxyHeaders(context) || haveCustomHostValue(context))
|
if (sourceIpNotLan(context) || haveReverseProxyHeaders(context) || haveCustomHostValue(context))
|
||||||
{
|
{
|
||||||
context.Response.StatusCode = 412;
|
context.Response.StatusCode = 412;
|
||||||
var accept = context.Request.Headers[HeaderNames.Accept];
|
var accept = context.Request.Headers[HeaderNames.Accept].ToString();
|
||||||
if (accept.Contains("text/html"))
|
if (accept.Contains("text/html"))
|
||||||
{
|
{
|
||||||
context.Response.ContentType = "text/html; charset=utf-8";
|
context.Response.ContentType = "text/html; charset=utf-8";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user