Skip to content

Commit

Permalink
Fix argument delegation in Ruby 3
Browse files Browse the repository at this point in the history
  • Loading branch information
crackofdusk committed Feb 21, 2022
1 parent c48b407 commit a6bbe3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/datatrans/xml/transaction/request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Request

def post(url, options = {})
options = options.merge(self.datatrans.proxy)
HTTParty.post(url, options)
HTTParty.post(url, **options)
end

def initialize(datatrans, params)
Expand Down

0 comments on commit a6bbe3f

Please sign in to comment.