Browse Source

fix: send server plugin request as json (#1690)

Guy Lewin 5 years ago
parent
commit
6d1af85e80
1 changed files with 1 additions and 0 deletions
  1. 1 0
      models/plugin/server/http.go

+ 1 - 0
models/plugin/server/http.go

@@ -84,6 +84,7 @@ func (p *httpPlugin) do(ctx context.Context, r *Request, res *Response) error {
 	}
 	req = req.WithContext(ctx)
 	req.Header.Set("X-Frp-Reqid", GetReqidFromContext(ctx))
+	req.Header.Set("Content-Type", "application/json")
 	resp, err := p.client.Do(req)
 	if err != nil {
 		return err