Skip to content

Commit 7d6b9f7

Browse files
committed
fix(binding): fix binder of query
Change-Id: Ibbbbe3eb691013e6b4857f8af43832ac43f2d75a
1 parent 9f9688f commit 7d6b9f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

binding/receiver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func (r *receiver) getPostForm(req *http.Request, bodyCodec codec) (url.Values,
134134
if req.PostForm == nil {
135135
req.ParseMultipartForm(defaultMaxMemory)
136136
}
137-
return req.Form, nil
137+
return req.PostForm, nil
138138
}
139139
return nil, nil
140140
}

0 commit comments

Comments
 (0)