diff options
| author | Niall Sheridan <nsheridan@gmail.com> | 2017-10-18 13:15:14 +0100 | 
|---|---|---|
| committer | Niall Sheridan <niall@intercom.io> | 2017-10-18 13:25:46 +0100 | 
| commit | 7b320119ba532fd409ec7dade7ad02011c309599 (patch) | |
| tree | a39860f35b55e6cc499f8f5bfa969138c5dd6b73 /vendor/github.com/google/go-github/github/repos_invitations.go | |
| parent | 7c99874c7a3e7a89716f3ee0cdf696532e35ae35 (diff) | |
Update dependencies
Diffstat (limited to 'vendor/github.com/google/go-github/github/repos_invitations.go')
| -rw-r--r-- | vendor/github.com/google/go-github/github/repos_invitations.go | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/vendor/github.com/google/go-github/github/repos_invitations.go b/vendor/github.com/google/go-github/github/repos_invitations.go index a803a12..0a2b7c1 100644 --- a/vendor/github.com/google/go-github/github/repos_invitations.go +++ b/vendor/github.com/google/go-github/github/repos_invitations.go @@ -90,5 +90,9 @@ func (s *RepositoriesService) UpdateInvitation(ctx context.Context, owner, repo  	invite := &RepositoryInvitation{}  	resp, err := s.client.Do(ctx, req, invite) -	return invite, resp, err +	if err != nil { +		return nil, resp, err +	} + +	return invite, resp, nil  }  | 
