lib/active_merchant/billing/gateways/sage_pay.rb in activemerchant-1.51.0 vs lib/active_merchant/billing/gateways/sage_pay.rb in activemerchant-1.52.0

- old
+ new

@@ -185,9 +185,10 @@ add_pair(post, :ClientIPAddress, options[:ip]) end def add_optional_data(post, options) add_pair(post, :GiftAidPayment, options[:gift_aid_payment]) unless options[:gift_aid_payment].blank? + add_pair(post, :ApplyAVSCV2, options[:apply_avscv2]) unless options[:apply_avscv2].blank? add_pair(post, :Apply3DSecure, options[:apply_3d_secure]) unless options[:apply_3d_secure].blank? add_pair(post, :CreateToken, 1) unless options[:store].blank? add_pair(post, :FIRecipientAcctNumber, options[:recipient_account_number]) add_pair(post, :FIRecipientSurname, options[:recipient_surname]) add_pair(post, :FIRecipientPostcode, options[:recipient_postcode])