Skip to content

Commit 7b95262

Browse files
committedJan 28, 2022
update
1 parent 9da6f40 commit 7b95262

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type response struct {
1616
cfg *config
1717
}
1818

19-
var ResDeleteHeader = []string{"Upgrade", "Alt-Svc", "Alternate-Protocol", "Expect-CT"}
19+
var ResDeleteHeader = []string{"Upgrade", "Alt-Svc", "Alternate-Protocol", "Expect-CT", "Report-To", "Nel"}
2020

2121
func (res *response) patch_response(r *bufio.Reader, req *http.Request) (resp *http.Response, error error) {
2222
//

‎server/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,9 @@ async function handleRequest(request) {
228228
if(request.method != 'POST') {
229229
return new Response('OK.', {status: 200})
230230
}
231+
if(request.body==null) {
232+
return new Response('NULL Post Body.', {status: 200})
233+
}
231234
/** GotoX 代理 API,普通请求 **/
232235
try {
233236
let [fetchOptions, status, err] = [{},0,'']//parseFetch(request, false)

0 commit comments

Comments
 (0)