From 4776448b1d17b98149b2b1d51fbb41fc8906d342 Mon Sep 17 00:00:00 2001 From: gfleury Date: Mon, 16 Mar 2020 21:32:40 -0300 Subject: [PATCH] Adding missing err check --- default_api.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/default_api.go b/default_api.go index f9c6d6c..73ce313 100644 --- a/default_api.go +++ b/default_api.go @@ -587,7 +587,11 @@ Create a new pull request between two branches. The branches may be in the same func (a *DefaultApiService) Create(projectKey, repositorySlug string, localVarOptionals map[string]interface{}) (*APIResponse, error) { var pullRequest PullRequest - mapstructure.Decode(localVarOptionals, &pullRequest) + err := mapstructure.Decode(localVarOptionals, &pullRequest) + if err != nil { + return nil, err + } + return a.CreatePullRequest(projectKey, repositorySlug, pullRequest) }