Handling empty DeleteWebhook response

This commit is contained in:
Ricardo Baptista 2019-12-16 18:51:47 -03:00
parent d073bb7962
commit e124d31ae1

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