Skip to content

Commit

Permalink
fixing setting up values
Browse files Browse the repository at this point in the history
  • Loading branch information
kubitre committed Feb 5, 2022
1 parent f780a79 commit d980612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extractors/extract_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func prepareInlineStructFields(request *http.Request, value reflect.Value, prepa
if parsedValue.Kind() == reflect.ValueOf(nil).Kind() {
return errors.New("in request does not exist query param with name: " + parsedTag)
}
value.Set(parsedValue)
val.Set(parsedValue)
}
}
}
Expand Down

0 comments on commit d980612

Please sign in to comment.