aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/google/go-github/github/repos_invitations.go
diff options
context:
space:
mode:
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.go6
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
}