mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
Merge pull request #1785 from cq-z/master
fix: supper grpc and grpc web
This commit is contained in:
commit
afb15b8601
|
@ -1178,7 +1178,7 @@ func (ctx *Context) IsHTTP2() bool {
|
|||
|
||||
// IsGRPC reports whether the request came from a gRPC client.
|
||||
func (ctx *Context) IsGRPC() bool {
|
||||
return ctx.IsHTTP2() && ctx.GetContentTypeRequested() == ContentGRPCHeaderValue
|
||||
return ctx.IsHTTP2() && strings.Contains(ctx.GetContentTypeRequested(), ContentGRPCHeaderValue)
|
||||
}
|
||||
|
||||
type (
|
||||
|
|
Loading…
Reference in New Issue
Block a user