Skip to content

Commit

Permalink
Add missing injection in constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
gcatanese committed Nov 25, 2024
1 parent ed7c718 commit 2d70a50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class WebhookController {
private HMACValidator hmacValidator;

@Autowired
public WebhookController(ApplicationProperty applicationProperty) {
public WebhookController(ApplicationProperty applicationProperty, HMACValidator hmacValidator) {
this.applicationProperty = applicationProperty;

if (this.applicationProperty.getHmacKey() == null) {
Expand Down

0 comments on commit 2d70a50

Please sign in to comment.