lib/active_merchant/billing/gateways/payu_in.rb in activemerchant-1.103.0 vs lib/active_merchant/billing/gateways/payu_in.rb in activemerchant-1.104.0
- old
+ new
@@ -31,10 +31,10 @@
add_customer_data(post, options)
add_auth(post)
MultiResponse.run do |r|
r.process { commit(url('purchase'), post) }
- if(r.params['enrolled'].to_s == '0')
+ if r.params['enrolled'].to_s == '0'
r.process { commit(r.params['post_uri'], r.params['form_post_vars']) }
else
r.process { handle_3dsecure(r) }
end
end