forked from cerc-io/plugeth
parent
9d187f0238
commit
5369a5c54d
@ -177,7 +177,7 @@ func validateRequest(r *http.Request) (int, error) {
|
||||
return http.StatusRequestEntityTooLarge, err
|
||||
}
|
||||
mt, _, err := mime.ParseMediaType(r.Header.Get("content-type"))
|
||||
if err != nil || mt != contentType {
|
||||
if r.Method != http.MethodOptions && (err != nil || mt != contentType) {
|
||||
err := fmt.Errorf("invalid content type, only %s is supported", contentType)
|
||||
return http.StatusUnsupportedMediaType, err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user