mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	| @@ -94,7 +94,12 @@ func newJSONRequest[T any](pc payloadConvertor[T], w *webhook_model.Webhook, t * | ||||
| 		return nil, nil, err | ||||
| 	} | ||||
|  | ||||
| 	req, err := http.NewRequest(w.HTTPMethod, w.URL, bytes.NewReader(body)) | ||||
| 	method := w.HTTPMethod | ||||
| 	if method == "" { | ||||
| 		method = http.MethodPost | ||||
| 	} | ||||
|  | ||||
| 	req, err := http.NewRequest(method, w.URL, bytes.NewReader(body)) | ||||
| 	if err != nil { | ||||
| 		return nil, nil, err | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user