Fixing GetPullRequestResponse

This commit is contained in:
gfleury 2019-06-05 10:52:24 +02:00
parent b39a1467fe
commit 3e6935e03f

View File

@ -302,7 +302,7 @@ func GetSSHKeysResponse(r *APIResponse) ([]SSHKey, error) {
// GetPullRequestResponse cast PullRequest into structure
func GetPullRequestResponse(r *APIResponse) (PullRequest, error) {
var m PullRequest
err := mapstructure.Decode(r.Values["values"], &m)
err := mapstructure.Decode(r.Values, &m)
return m, err
}