Revert "don't try to process a payment if it's pending auth"

This reverts commit bba9e55006.
This commit is contained in:
Andy Brett
2021-01-27 08:06:20 -08:00
parent 7525620d6c
commit e6e20309aa

View File

@@ -5,7 +5,6 @@ module Spree
module Processing
def process!
return unless validate!
return if cvv_response_message.present?
if payment_method.auto_capture?
purchase!
@@ -16,7 +15,6 @@ module Spree
def process_offline!
return unless validate!
return if cvv_response_message.present?
if payment_method.auto_capture?
charge_offline!