diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/RequestUser.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/RequestUser.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUser.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUser.go index d4639284..0f39af4a 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/RequestUser.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestUser.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -861,9 +861,9 @@ func (r *UserGetMailTipsRequest) Paging(ctx context.Context, method, path string } var values []MailTips for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -876,6 +876,7 @@ func (r *UserGetMailTipsRequest) Paging(ctx context.Context, method, path string value []MailTips ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -947,9 +948,9 @@ func (r *UserTranslateExchangeIDsRequest) Paging(ctx context.Context, method, pa } var values []ConvertIDResult for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -962,6 +963,7 @@ func (r *UserTranslateExchangeIDsRequest) Paging(ctx context.Context, method, pa value []ConvertIDResult ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } |