Skip to content

Commit

Permalink
fix rebase error
Browse files Browse the repository at this point in the history
  • Loading branch information
egonelbre committed Apr 1, 2019
1 parent 552a184 commit e637bd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions.go
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ func addExtensionResults(p *ExecuteParams, result *Result) {
func() {
defer func() {
if r := recover(); r != nil {
result.AppendErrors(gqlerrors.FormatError(fmt.Errorf("%s.GetResult: %v", ext.Name(), r.(error))))
result.Errors = append(result.Errors, gqlerrors.FormatError(fmt.Errorf("%s.GetResult: %v", ext.Name(), r.(error))))
}
}()
if ext.HasResult() {
Expand Down

0 comments on commit e637bd9

Please sign in to comment.