Skip to content

Commit

Permalink
Merge branch 'fix/rack_request_parameters_access' of github.com:4nd2i…
Browse files Browse the repository at this point in the history
…n/stripe-rails into feature/add_missing_webhook_callbacks
  • Loading branch information
4nd2in committed Jul 14, 2024
2 parents 03de70a + 9eaefa7 commit 8ac6981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/stripe/event_dispatch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def dispatch_stripe_event(request)
end

def retrieve_stripe_event(request)
id = request['id']
id = request.params[:id]
body = request.body.read
sig_header = request.headers['HTTP_STRIPE_SIGNATURE']
endpoint_secrets = ::Rails.application.config.stripe.signing_secrets
Expand Down

0 comments on commit 8ac6981

Please sign in to comment.