Merge pull request #36 from ribaptista/master

Handling empty DeleteWebhook response
This commit is contained in:
George Fleury 2019-12-31 10:56:02 +01:00 committed by GitHub
commit 36fee14a8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2063,7 +2063,7 @@ func (a *DefaultApiService) DeleteWebhook(projectKey, repositorySlug string, web
return NewAPIResponseWithError(localVarHTTPResponse, reportError("Status: %v, Body: %s", localVarHTTPResponse.Status, bodyBytes))
}
return NewBitbucketAPIResponse(localVarHTTPResponse)
return NewAPIResponse(localVarHTTPResponse), nil
}
/* DefaultApiService