Skip to content

Commit

Permalink
Fix panic caused by shallowed error in create application (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonodonnell committed Oct 18, 2021
1 parent a0aad3a commit 4495e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/application_msgraph.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ func (c AppClient) createApplicationResponder(resp *http.Response) (result Appli
autorest.ByUnmarshallingJSON(&result),
autorest.ByClosing())
result.Response = autorest.Response{Response: resp}
return result, nil
return result, err
}

func (c AppClient) deleteApplicationPreparer(ctx context.Context, applicationObjectID string) (*http.Request, error) {
Expand Down

0 comments on commit 4495e04

Please sign in to comment.