fix typo in errcheck for response parsing logic in CreateTunnel routine

This commit is contained in:
Nikita Sivukhin 2024-01-05 11:57:30 +04:00 committed by João Oliveirinha
parent e846943e66
commit a36fa07aba
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ func (r *RESTClient) CreateTunnel(name string, tunnelSecret []byte) (*TunnelWith
switch resp.StatusCode {
case http.StatusOK:
var tunnel TunnelWithToken
if serdeErr := parseResponse(resp.Body, &tunnel); err != nil {
if serdeErr := parseResponse(resp.Body, &tunnel); serdeErr != nil {
return nil, serdeErr
}
return &tunnel, nil